()
| 432 | } |
| 433 | |
| 434 | @BytecodeAccess |
| 435 | public static void onGuiGameOverInit() { |
| 436 | if (The5zigMod.getVars().isPlayerNull()) { |
| 437 | return; |
| 438 | } |
| 439 | Vector3f coordinates = new Vector3f((float) The5zigMod.getVars().getPlayerPosX(), (float) The5zigMod.getVars().getPlayerPosY(), |
| 440 | (float) The5zigMod.getVars().getPlayerPosZ()); |
| 441 | WorldType worldType = WorldType.OVERWORLD; |
| 442 | String biome = The5zigMod.getVars().getBiome(); |
| 443 | if (biome != null) { |
| 444 | worldType = WorldType.byName(biome); |
| 445 | } |
| 446 | The5zigMod.getDataManager().setDeathLocation(new DeathLocation(coordinates, worldType)); |
| 447 | } |
| 448 | |
| 449 | @BytecodeAccess |
| 450 | public static int getChatAlphaMultiplicator() { |
nothing calls this directly
no test coverage detected