This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package apoc.c4.tileentity; | |
import net.minecraft.client.Minecraft; | |
import net.minecraft.nbt.NBTTagCompound; | |
import net.minecraft.network.NetworkManager; | |
import net.minecraft.network.Packet; | |
import net.minecraft.network.play.server.S35PacketUpdateTileEntity; | |
import net.minecraft.tileentity.TileEntity; | |
import net.minecraft.world.World; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.spongepowered.mixin.impl; | |
import net.minecraft.entity.EntityLivingBase; | |
import net.minecraft.entity.player.EntityPlayer; | |
import org.spongepowered.api.component.attribute.Damageable; | |
import org.spongepowered.api.entity.Player; | |
import org.spongepowered.mod.mixin.Mixin; | |
import org.spongepowered.mod.mixin.Shadow; | |
@Mixin(net.minecraft.entity.EntityLivingBase.class) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.spongepowered.mixin.impl; | |
import net.minecraft.entity.player.EntityPlayerMP; | |
import org.spongepowered.api.entity.Player; | |
import org.spongepowered.mod.mixin.Mixin; | |
import org.spongepowered.mod.mixin.Shadow; | |
@Mixin(EntityPlayerMP.class) | |
public abstract class MixinPlayer implements Player { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This file is part of Sponge, licensed under the MIT License (MIT). | |
* | |
* Copyright (c) SpongePowered.org <http://www.spongepowered.org> | |
* Copyright (c) contributors | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.thomas15v.turtlefix; | |
import net.minecraft.block.Block; | |
import net.minecraft.world.World; | |
import net.minecraftforge.common.FakePlayerFactory; | |
import net.minecraftforge.common.MinecraftForge; | |
import net.minecraftforge.event.Event; | |
import net.minecraftforge.event.world.BlockEvent; | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.spongepowered.mod.world; | |
import net.minecraft.world.WorldServer; | |
import org.spongepowered.api.block.Block; | |
import org.spongepowered.api.world.Chunk; | |
import org.spongepowered.api.world.World; | |
import org.spongepowered.mod.block.SpongeBlock; | |
import java.util.UUID; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import mcpc.patchengine.api.IPatch; | |
import mcpc.patchengine.asm.util.ClassUtil; | |
import mcpc.patchengine.asm.util.MethodUtil; | |
import mcpc.patchengine.common.Configuration; | |
import org.objectweb.asm.Opcodes; | |
import org.objectweb.asm.tree.*; | |
import java.util.logging.Logger; | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import mcpc.patchengine.api.IPatch; | |
import mcpc.patchengine.asm.util.ClassUtil; | |
import mcpc.patchengine.asm.util.MethodUtil; | |
import mcpc.patchengine.asm.util.NavigationUtil; | |
import mcpc.patchengine.common.Configuration; | |
import mcpc.patchengine.common.Constants; | |
import org.objectweb.asm.Opcodes; | |
import org.objectweb.asm.tree.*; | |
import org.objectweb.asm.util.Printer; | |
import org.objectweb.asm.util.Textifier; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import mcpc.patchengine.api.IPatch; | |
import mcpc.patchengine.asm.util.ClassUtil; | |
import mcpc.patchengine.asm.util.MethodUtil; | |
import mcpc.patchengine.asm.util.NavigationUtil; | |
import mcpc.patchengine.common.Configuration; | |
import mcpc.patchengine.common.Constants; | |
import org.objectweb.asm.Opcodes; | |
import org.objectweb.asm.tree.*; | |
import org.objectweb.asm.util.Printer; | |
import org.objectweb.asm.util.Textifier; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import mcpc.patchengine.api.IPatch; | |
import mcpc.patchengine.asm.util.ClassUtil; | |
import mcpc.patchengine.asm.util.MethodUtil; | |
import mcpc.patchengine.asm.util.NavigationUtil; | |
import mcpc.patchengine.common.Configuration; | |
import mcpc.patchengine.common.Constants; | |
import org.objectweb.asm.Opcodes; | |
import org.objectweb.asm.tree.*; | |
/** |