Compare commits
3 Commits
a2dadca406
...
d0501b16a2
Author | SHA1 | Date |
---|---|---|
Tom Dodd | d0501b16a2 | |
Tom Dodd | f375a58993 | |
WuzgXY | e4fa5b1d0a |
|
@ -1,3 +1,9 @@
|
|||
v2.18v
|
||||
|
||||
* Removed minor nuclear wasteland biome decorators causing crash
|
||||
|
||||
* Updated Chinese language file [thanks to WuzgXY and team!]
|
||||
|
||||
v2.18u
|
||||
|
||||
* Removed fluid auto-pushing from machine interfaces as connected machines would not update properly
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
mc_version=1.12.2
|
||||
forge_version=14.23.5.2838
|
||||
mapping_version=stable_39
|
||||
mod_version=2.18u
|
||||
mod_version=2.18v
|
||||
|
||||
ic2_version=2.8.197-ex112
|
||||
jei_version=4.15.0.293
|
||||
|
|
|
@ -105,9 +105,9 @@ public class BiomeDecoratorNuclearWasteland extends BiomeDecorator {
|
|||
generateTrees(worldIn, biomeIn, random, chunkPos);
|
||||
generateFlowers(worldIn, biomeIn, random, chunkPos);
|
||||
generateGrass(worldIn, biomeIn, random, chunkPos);
|
||||
|
||||
|
||||
if (generateFalls) {
|
||||
generateFalls(worldIn, random, chunkPos);
|
||||
// generateFalls(worldIn, random, chunkPos); Disabling due to weird crash.
|
||||
}
|
||||
MinecraftForge.EVENT_BUS.post(new DecorateBiomeEvent.Post(worldIn, random, chunkPos));
|
||||
}
|
||||
|
|
|
@ -23,13 +23,10 @@ import net.minecraftforge.fml.relauncher.SideOnly;
|
|||
|
||||
public class BiomeNuclearWasteland extends Biome {
|
||||
|
||||
public static final String BIOME_REGISTRY_NAME = "nuclear_wasteland";
|
||||
public static final String BIOME_NAME = "Nuclear Wasteland";
|
||||
|
||||
protected static final IBlockState BEDROCK = Blocks.BEDROCK.getDefaultState();
|
||||
|
||||
public BiomeNuclearWasteland() {
|
||||
super(new BiomeProperties(BIOME_NAME).setBaseHeight(0.12F).setHeightVariation(0.02F).setTemperature(2F).setWaterColor(0x994C00).setRainDisabled());
|
||||
super(new BiomeProperties("Nuclear Wasteland").setBaseHeight(0.12F).setHeightVariation(0.02F).setTemperature(2F).setWaterColor(0x994C00).setRainDisabled());
|
||||
|
||||
topBlock = NCBlocks.dry_earth.getDefaultState();
|
||||
fillerBlock = Blocks.SAND.getDefaultState();
|
||||
|
|
|
@ -23,7 +23,7 @@ public class NCBiomes {
|
|||
@SubscribeEvent
|
||||
public static void onEvent(final RegistryEvent.Register<Biome> event) {
|
||||
final IForgeRegistry<Biome> registry = event.getRegistry();
|
||||
registry.register(new BiomeNuclearWasteland().setRegistryName(Global.MOD_ID, BiomeNuclearWasteland.BIOME_REGISTRY_NAME));
|
||||
registry.register(NUCLEAR_WASTELAND.setRegistryName(Global.MOD_ID, "nuclear_wasteland"));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue