(NextTickListEntry entry, boolean autoCreate)
| 108 | } |
| 109 | |
| 110 | private Set getSubSet(NextTickListEntry entry, boolean autoCreate) |
| 111 | { |
| 112 | if (entry == null) |
| 113 | { |
| 114 | return null; |
| 115 | } |
| 116 | else |
| 117 | { |
| 118 | BlockPos blockpos = entry.position; |
| 119 | int i = blockpos.getX() >> 4; |
| 120 | int j = blockpos.getZ() >> 4; |
| 121 | return this.getSubSet(i, j, autoCreate); |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | private Set getSubSet(int cx, int cz, boolean autoCreate) |
| 126 | { |
no test coverage detected