Skip to content

Commit

Permalink
Few more changes
Browse files Browse the repository at this point in the history
- Fixed an apparent issue with our biome change packet
- Removed a mixin because uselessness
- Fixed modsupport mixin meta file to, you know, actually work
  • Loading branch information
ZombieHDGaming committed Apr 17, 2019
1 parent 7c8af94 commit b83e46f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 53 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public IMessage onMessage(BiomeChangeMessage message, MessageContext ctx) {
Minecraft.getMinecraft().addScheduledTask(() -> {
WorldClient world = Minecraft.getMinecraft().world;
Chunk chunk = world.getChunk(new BlockPos(message.x, 0, message.z));
((INewChunk) chunk).getIntBiomeArray()[(message.x & 15) << 4 | message.z & 15] = message.biomeId;
((INewChunk) chunk).getIntBiomeArray()[(message.z & 15) << 4 | message.x & 15] = message.biomeId;
world.markBlockRangeForRenderUpdate(new BlockPos(message.x, 0, message.z), new BlockPos(message.x, 0, message.z));
});
return null;
Expand Down
41 changes: 20 additions & 21 deletions src/main/resources/mixins.jeid.modsupport.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,26 @@
"minVersion": "0.6",
"compatibilityLevel": "JAVA_8",
"mixins": [
"abyssalcraft/MixinBiomeUtil",
"abyssalcraft/MixinCleansingRitualMessage",
"advancedrocketry/MixinBiomeHandler",
"biomesoplenty/MixinBOPCommand",
"biomesoplenty/MixinModBiomes",
"bookshelf/MixinWorldUtils",
"creepingnether/MixinEntityPortal",
"cyclopscore/MixinWorldHelpers",
"extrautils2/MixinBiomeManip",
"geographicraft/MixinDimensionManager",
"journeymap/MixinChunkMD",
"mystcraft/MixinBiomeReplacer",
"thaumcraft/MixinUtils",
"thebetweenlands/MixinBlockSpreadingDeath",
"thebetweenlands/MixinGenLayerVoronoiZoomInstanced",
"tofucraft/MixinGenLayerRiverMix",
"tofucraft/MixinGenLayerTofuVoronoiZoom",
"tropicraft/MixinGenLayerTropiVoronoiZoom",
"twilightforest/BlockTFMagicLogSpecial",
"twilightforest/MixinGenLayerTFRiverMix",
"worldedit/MixinBaseBlock"
"abyssalcraft.MixinBiomeUtil",
"advancedrocketry.MixinBiomeHandler",
"biomesoplenty.MixinBOPCommand",
"biomesoplenty.MixinModBiomes",
"bookshelf.MixinWorldUtils",
"creepingnether.MixinEntityPortal",
"cyclopscore.MixinWorldHelpers",
"extrautils2.MixinBiomeManip",
"geographicraft.MixinDimensionManager",
"journeymap.MixinChunkMD",
"mystcraft.MixinBiomeReplacer",
"thaumcraft.MixinUtils",
"thebetweenlands.MixinBlockSpreadingDeath",
"thebetweenlands.MixinGenLayerVoronoiZoomInstanced",
"tofucraft.MixinGenLayerRiverMix",
"tofucraft.MixinGenLayerTofuVoronoiZoom",
"tropicraft.MixinGenLayerTropiVoronoiZoom",
"twilightforest.MixinBlockTFMagicLogSpecial",
"twilightforest.MixinGenLayerTFRiverMix",
"worldedit.MixinBaseBlock"
],
"client": [],
"injectors": {
Expand Down

0 comments on commit b83e46f

Please sign in to comment.