Compare commits

...

3 Commits

Author SHA1 Message Date
Lukas Rieger (Blue) c7a9be42ad
Fix Javadoc 2024-02-07 20:49:31 +01:00
Lukas Rieger (Blue) dcae50572a
Merge branch 'master' of https://github.com/BlueMap-Minecraft/BlueMapAPI 2024-02-07 20:45:54 +01:00
Lukas Rieger (Blue) c3ce6d95de
Deprecate BlueMapWorld#getSaveFolder() 2024-02-07 20:45:28 +01:00
1 changed files with 4 additions and 1 deletions

View File

@ -42,10 +42,13 @@ public interface BlueMapWorld {
String getId();
/**
* Getter for the {@link Path} of this world's save-files (folder). This matches the folder configured in bluemap's config for this map ( <code>world:</code> ).
* Getter for the {@link Path} of this world's save-files.<br>
* (To be exact: the parent-folder of the regions-folder used for rendering)
* @return the save-folder of this world.
* @deprecated Getting the save-folder of a world is no longer supported. As it is not guaranteed that every world has a save-folder.
*/
@DebugDump
@Deprecated
Path getSaveFolder();
/**