public void func_146100_a(TileEntity p_146100_1_) { if (p_146100_1_ instanceof TileEntitySign) { ((TileEntitySign)p_146100_1_).func_145912_a(this); this.playerNetServerHandler.sendPacket(new S36PacketSignEditorOpen(p_146100_1_.field_145851_c, p_146100_1_.field_145848_d, p_146100_1_.field_145849_e)); } }
public void func_146100_a(TileEntity p_146100_1_) { if (p_146100_1_ instanceof TileEntitySign) { ((TileEntitySign)p_146100_1_).func_145912_a(this); this.playerNetServerHandler.sendPacket(new S36PacketSignEditorOpen(p_146100_1_.xCoord, p_146100_1_.yCoord, p_146100_1_.zCoord)); } }
public void openEditSign(TileEntitySign signTile) { signTile.setPlayer(this); this.playerNetServerHandler.sendPacket(new S36PacketSignEditorOpen(signTile.getPos())); }
@Override public Packet signEditorOpen(int x, int y, int z) { return new NeptunePacket(new S36PacketSignEditorOpen(new BlockPos(x, y, z))); }
@Override public Packet signEditorOpen(int x, int y, int z) { return (Packet) new S36PacketSignEditorOpen(new BlockPos(x, y, z)); }
/** * Creates a sign in the specified location if it didn't exist and opens the GUI to edit its text */ void handleSignEditorOpen(S36PacketSignEditorOpen packetIn);
/** * Creates a sign in the specified location if it didn't exist and opens the GUI to edit its text */ void handleSignEditorOpen(S36PacketSignEditorOpen var1);
void handleSignEditorOpen(S36PacketSignEditorOpen p_147268_1_);