(BlockPos p_getRandom_0_, int p_getRandom_1_)
| 1399 | } |
| 1400 | |
| 1401 | public static int getRandom(BlockPos p_getRandom_0_, int p_getRandom_1_) { |
| 1402 | int i = intHash(p_getRandom_1_ + 37); |
| 1403 | i = intHash(i + p_getRandom_0_.getX()); |
| 1404 | i = intHash(i + p_getRandom_0_.getZ()); |
| 1405 | i = intHash(i + p_getRandom_0_.getY()); |
| 1406 | return i; |
| 1407 | } |
| 1408 | |
| 1409 | public static int getAvailableProcessors() { |
| 1410 | return availableProcessors; |
no test coverage detected