mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-01-07 07:31:40 +00:00
Try this version, otherwise maybe downgrade?
This commit is contained in:
parent
1e386d274e
commit
e704784570
3 changed files with 4 additions and 2 deletions
|
@ -145,8 +145,10 @@ public class BukkitUtil extends BlockManager {
|
|||
}
|
||||
|
||||
public static World getWorld(final String string) {
|
||||
if (StringMan.isEqual(string,lastString)) {
|
||||
return lastWorld;
|
||||
if (StringMan.isEqual(string, lastString)) {
|
||||
if (lastWorld != null) {
|
||||
return lastWorld;
|
||||
}
|
||||
}
|
||||
World world = Bukkit.getWorld(string);
|
||||
lastString = string;
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue