Skip to content

Commit

Permalink
Version 1.9.3 release
Browse files Browse the repository at this point in the history
Changed oil sand texture

Fixed Oredict mixup
  • Loading branch information
Alcatergit committed Apr 1, 2023
1 parent 9a58e86 commit abcea0e
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '1.9.2'
version = '1.9.3'
group = 'com.hbm' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'NTM-Extended-1.12.2'

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ org.gradle.daemon=true
org.gradle.configureondemand=true
org.gradle.parallel=true
jei_version=4.16.1.302
version=1.9.2
version=1.9.3
mc_version=1.12.2
2 changes: 1 addition & 1 deletion src/main/java/com/hbm/config/CompatibilityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public static void loadFromConfig(Configuration config) {


//Structures
radioStructure = CommonConfig.createConfigHashMap(config, CATEGORY_DIMSTRUC, "03.01_radioSpawn", "Spawn radio station on every nTH chunk - <dimID:n> (Int:Int)", "Int", "Int", new String[]{ "0:500" }, ":");
radioStructure = CommonConfig.createConfigHashMap(config, CATEGORY_DIMSTRUC, "03.01_radioSpawn", "Spawn radio station on every nTH chunk - <dimID:n> (Int:Int)", "Int", "Int", new String[]{ "0:1000" }, ":");
antennaStructure = CommonConfig.createConfigHashMap(config, CATEGORY_DIMSTRUC, "03.02_antennaSpawn", "Spawn antenna on every nTH chunk - <dimID:n> (Int:Int)", "Int", "Int", new String[]{ "0:750" }, ":");
atomStructure = CommonConfig.createConfigHashMap(config, CATEGORY_DIMSTRUC, "03.03_atomSpawn", "Spawn power plant on every nTH chunk - <dimID:n> (Int:Int)", "Int", "Int", new String[]{ "0:500" }, ":");
vertibirdStructure = CommonConfig.createConfigHashMap(config, CATEGORY_DIMSTRUC, "03.04_vertibirdSpawn", "Spawn vertibird on every nTH chunk - <dimID:n> (Int:Int)", "Int", "Int", new String[]{ "0:500" }, ":");
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/hbm/inventory/OreDictManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,8 @@ public static void registerOres() {

//VANILLA - Fixed
COAL .dust(powder_coal) .dustSmall(powder_coal_tiny) .gem(Items.COAL) .crystal(crystal_coal);
IRON .dust(powder_iron) .crystal(crystal_iron) .plate(plate_iron) .ore(ore_gneiss_iron);
GOLD .dust(powder_gold) .crystal(crystal_gold) .plate(plate_gold) .ore(ore_gneiss_gold, cluster_iron, cluster_depth_iron);
IRON .dust(powder_iron) .crystal(crystal_iron) .plate(plate_iron) .ore(ore_gneiss_iron, cluster_iron, cluster_depth_iron);
GOLD .dust(powder_gold) .crystal(crystal_gold) .plate(plate_gold) .ore(ore_gneiss_gold);
LAPIS .dust(powder_lapis) .crystal(crystal_lapis);
REDSTONE .crystal(crystal_redstone);
NETHERQUARTZ .dust(powder_quartz) .gem(Items.QUARTZ);
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/hbm/lib/HbmWorldGen.java
Original file line number Diff line number Diff line change
Expand Up @@ -333,10 +333,10 @@ private void generateStructures(World world, Random rand, int i, int j) {
j += 8;
Biome biome = world.getBiome(new BlockPos(i, 0, j));

if (biome.getDefaultTemperature() >= 1F || biome.getRainfall() < 2F) {
if (biome.getDefaultTemperature() >= 1F && biome.getRainfall() > 1F) {
generateAStructure(world, rand, i, j, new Radio01(), parseInt(CompatibilityConfig.radioStructure.get(dimID)));
}
if (biome.getDefaultTemperature() <= 1F || biome.getRainfall() > 2F) {
if (biome.getDefaultTemperature() <= 1F) {
generateAStructure(world, rand, i, j, new Antenna(), parseInt(CompatibilityConfig.antennaStructure.get(dimID)));
}
if (!biome.canRain() && biome.getDefaultTemperature() >= 2F) {
Expand Down Expand Up @@ -616,7 +616,7 @@ private void generateStructures(World world, Random rand, int i, int j) {
}

if(!biome.canRain() && biome.getDefaultTemperature() >= 1.8F) {
if(rand.nextInt(200) == 0) {
if(rand.nextInt(600) == 0) {
for(int a = 0; a < 1; a++) {
int x = i + rand.nextInt(16);
int z = j + rand.nextInt(16);
Expand Down
7 changes: 3 additions & 4 deletions src/main/java/com/hbm/lib/RefStrings.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
public class RefStrings {
public static final String MODID = "hbm";
public static final String NAME = "Hbm's Nuclear Tech - Extended Edition";
public static final String VERSION = "NTM-Extended-1.12.2-1.9.2";
public static final String CHANGELOG = 2Added Hazards to Blocks$§2Added Oredictionary support for the Chemplant$§2Added optimizations to Assembler and Chemplant$§2Added colors to recipe templates$§2Added Xenon Oxy and Gas Shale recipes$§2Added Immersive Gold Textures$§3Changed Polonioum to be hot$§3Changed Nukes to only illuminate the sky when they are hot$§3Changed BF to Balefire in lang file$§3Changed Gas Gneiss texture$§3Changed Neoveline dust texture$§3Changed Plutonium pile to give RGP$§3Changed some chemplant recipes$§6Fixed Digamma Fire$§6Fixed Fel laser descriptions$§6Fixed Safes not dropping when locked$§6Fixed Crates not dropping when handmined$§6Fixed Rounding Errors$§6Fixed Small Reactor Cherenkov$§6Fixed missing Gasoline Template";
public static final String VERSION = "NTM-Extended-1.12.2-1.9.3";
public static final String CHANGELOG = 8§lBIG OIL UPDATE$§2Added Bedrock Oil$§2Added Frackturing Tower$§2Added Catalytic Cracker$§2Added Osmiridium$§2Added Bakelite, Rubber, Selenium$§2Added C4, TNT, Dynamite$§2Added 5 new Batteries$§2Added uranium crafting$§2Added Info overlays$§2Added alot more JEI support$§2Added more Crystalizer recipes$§3Changed Hazmat suits to have filters$§3Changed recipes to use new items$§6Fixed AoE breaking Bedrock$§6Fixed Fraction Tower reset$§6Fixed tons of bugs$§6Fixed tool models";
//HBM's Beta Naming Convention:
//V T (X)
//V -> next release version
Expand All @@ -13,5 +13,4 @@ public class RefStrings {
//Drillgon200: I completely ignored this to make my own even worse naming system. Sigh.
public static final String CLIENTSIDE = "com.hbm.main.ClientProxy";
public static final String SERVERSIDE = "com.hbm.main.ServerProxy";
}

}
Binary file modified src/main/resources/assets/hbm/textures/blocks/ore_oil_sand_alt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit abcea0e

Please sign in to comment.