diff options
Diffstat (limited to 'src/main/java/gregtech/common/GT_Server.java')
-rw-r--r-- | src/main/java/gregtech/common/GT_Server.java | 51 |
1 files changed, 23 insertions, 28 deletions
diff --git a/src/main/java/gregtech/common/GT_Server.java b/src/main/java/gregtech/common/GT_Server.java index cdcd954dea..f5137f0f49 100644 --- a/src/main/java/gregtech/common/GT_Server.java +++ b/src/main/java/gregtech/common/GT_Server.java @@ -5,32 +5,27 @@ import net.minecraft.item.ItemStack; import net.minecraft.world.World;
public class GT_Server
- extends GT_Proxy
-{
- public boolean isServerSide()
- {
- return true;
- }
-
- public boolean isClientSide()
- {
- return false;
- }
-
- public boolean isBukkitSide()
- {
- return false;
- }
-
- public void doSonictronSound(ItemStack aStack, World aWorld, double aX, double aY, double aZ) {}
-
- public int addArmor(String aPrefix)
- {
- return 0;
- }
-
- public EntityPlayer getThePlayer()
- {
- return null;
- }
+ extends GT_Proxy {
+ public boolean isServerSide() {
+ return true;
+ }
+
+ public boolean isClientSide() {
+ return false;
+ }
+
+ public boolean isBukkitSide() {
+ return false;
+ }
+
+ public void doSonictronSound(ItemStack aStack, World aWorld, double aX, double aY, double aZ) {
+ }
+
+ public int addArmor(String aPrefix) {
+ return 0;
+ }
+
+ public EntityPlayer getThePlayer() {
+ return null;
+ }
}
|