Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Runemoro committed Jul 14, 2018
1 parent 2801e2a commit a9b05d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@Pseudo
@Mixin(BlockTFMagicLogSpecial.class)
public class MixinBlockTFMagicLogSpecial {
@Overwrite
@Overwrite(remap = false)
private void sendChangedBiome(World world, BlockPos pos) {
IMessage message = new BiomeChangeMessage(pos.getX(), pos.getZ(), Biome.getIdForBiome(TFBiomes.enchantedForest));
MessageManager.CHANNEL.sendToAllAround(message, new NetworkRegistry.TargetPoint(world.provider.getDimension(), pos.getX(), 128.0D, pos.getZ(), 128.0D));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class MixinCleansingRitualMessage {
@Shadow private int z;
@Shadow private int biomeID;

@Overwrite
@Overwrite(remap = false)
public void process(EntityPlayer player, Side side) {
Chunk chunk = player.world.getChunkFromBlockCoords(new BlockPos(x, 0, z));
int chunkX = x & 0xF;
Expand Down

0 comments on commit a9b05d9

Please sign in to comment.