aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorbartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>2020-03-17 19:04:34 +0100
committerbartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>2020-03-17 19:04:34 +0100
commitc10ecd6a3cb6ca75c1099eecd2654ca2a350d7e3 (patch)
tree9d4baa3010d6585fec2912e433c1661ef0821fd5 /src/main/java
parentd2b65362f9f74f6f45e4c8d2aad819aea259a9cb (diff)
downloadGT5-Unofficial-c10ecd6a3cb6ca75c1099eecd2654ca2a350d7e3.tar.gz
GT5-Unofficial-c10ecd6a3cb6ca75c1099eecd2654ca2a350d7e3.tar.bz2
GT5-Unofficial-c10ecd6a3cb6ca75c1099eecd2654ca2a350d7e3.zip
Refactored BlockScanningEvent.java
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/gregtech/api/events/BlockScanningEvent.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main/java/gregtech/api/events/BlockScanningEvent.java b/src/main/java/gregtech/api/events/BlockScanningEvent.java
index 25123187cd..73cc3da79f 100644
--- a/src/main/java/gregtech/api/events/BlockScanningEvent.java
+++ b/src/main/java/gregtech/api/events/BlockScanningEvent.java
@@ -1,14 +1,16 @@
package gregtech.api.events;
+import cpw.mods.fml.common.eventhandler.Cancelable;
import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
+import net.minecraftforge.event.world.WorldEvent;
import java.util.ArrayList;
-@cpw.mods.fml.common.eventhandler.Cancelable
-public class BlockScanningEvent extends net.minecraftforge.event.world.WorldEvent {
+@Cancelable
+public class BlockScanningEvent extends WorldEvent {
public final EntityPlayer mPlayer;
public final int mX, mY, mZ, mScanLevel;