(PacketBuffer stream)
| 240 | } |
| 241 | |
| 242 | public void readData(PacketBuffer stream) { |
| 243 | if (stream.readBoolean()) { |
| 244 | min = stream.readBlockPos(); |
| 245 | max = stream.readBlockPos(); |
| 246 | } else { |
| 247 | min = null; |
| 248 | max = null; |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | public void writeData(PacketBuffer stream) { |
| 253 | boolean isValid = isInitialized(); |
no test coverage detected