2015-06-23 22:29:05 +00:00
|
|
|
package gregtech.common;
|
|
|
|
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
|
|
public class GT_Server
|
2015-10-22 02:15:09 +00:00
|
|
|
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;
|
|
|
|
}
|
2015-06-23 22:29:05 +00:00
|
|
|
}
|