'Bukkit nullpointerexception
Does anyone knows how to fix this nullpointerexception? https://haste.nycode.de/gipicaxune.avrasm
Silvan
Solution 1:[1]
The world you are trying to load with your code (Bukkit.getWorld("myWorld");) in class InventoryListener in line 55.
Before you handle optional information you should check if it exist.
Example:
if(Bukkit.getWorld("myWorld") == null) {
return;
}
Bukkit.getWorld("myWorld").//do something
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Levi Heßmann |
