()
| 11 | private Entity entity; |
| 12 | |
| 13 | public int getId() |
| 14 | { |
| 15 | UUID uuid = this.entity.getUniqueID(); |
| 16 | long i = uuid.getLeastSignificantBits(); |
| 17 | int j = (int)(i & 2147483647L); |
| 18 | return j; |
| 19 | } |
| 20 | |
| 21 | public BlockPos getSpawnPosition() |
| 22 | { |
nothing calls this directly
no test coverage detected