(ISaveHandler saveHandlerIn, WorldInfo info, WorldProvider providerIn, Profiler profilerIn, boolean client)
| 155 | int[] lightUpdateBlockList; |
| 156 | |
| 157 | protected World(ISaveHandler saveHandlerIn, WorldInfo info, WorldProvider providerIn, Profiler profilerIn, boolean client) |
| 158 | { |
| 159 | this.ambientTickCountdown = this.rand.nextInt(12000); |
| 160 | this.spawnHostileMobs = true; |
| 161 | this.spawnPeacefulMobs = true; |
| 162 | this.lightUpdateBlockList = new int[32768]; |
| 163 | this.saveHandler = saveHandlerIn; |
| 164 | this.theProfiler = profilerIn; |
| 165 | this.worldInfo = info; |
| 166 | this.provider = providerIn; |
| 167 | this.isRemote = client; |
| 168 | this.worldBorder = providerIn.getWorldBorder(); |
| 169 | } |
| 170 | |
| 171 | public World init() |
| 172 | { |
nothing calls this directly
no test coverage detected