Compare commits

..

3 Commits

Author SHA1 Message Date
Tom Dodd d0501b16a2 Version 2.18v 2020-07-03 18:29:38 +01:00
Tom Dodd f375a58993
Merge pull request #665 from WuzgXY-GitHub/patch-6
Simplified Chinese Translation of v2.18-latest
2020-07-03 17:36:21 +01:00
WuzgXY e4fa5b1d0a
v2.18-latest
As I said, this is not made by me but a team.
2020-06-26 10:14:06 +08:00
6 changed files with 3761 additions and 1687 deletions

View File

@ -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

View File

@ -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

View File

@ -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));
}

View File

@ -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();

View File

@ -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