mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 03:43:40 +01:00
SPIGOT-5245: Unneeded cast to WorldNBTStorage in CraftWorld#getWorldFolder
By: md_5 <git@md-5.net>
This commit is contained in:
parent
d67f427648
commit
aeb3ecc654
1 changed files with 1 additions and 1 deletions
|
@ -1778,7 +1778,7 @@ public class CraftWorld implements World {
|
|||
|
||||
@Override
|
||||
public File getWorldFolder() {
|
||||
return ((WorldNBTStorage) world.getDataManager()).getDirectory();
|
||||
return world.getDataManager().getDirectory();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue