13
0
geforkt von Mirrors/Paper

Adds a method that returns the File representation of the update folder. The previous method just returns the filename and doesn't provide the path

By: raphfrk <raphfrk@gmail.com>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2011-08-14 05:34:15 +01:00
Ursprung e1825bdfd5
Commit fd48f02fc3

Datei anzeigen

@ -10,6 +10,7 @@ import java.util.Map;
import java.util.Set;
import java.util.UUID;
import java.util.logging.Logger;
import java.io.File;
import org.bukkit.command.PluginCommand;
import org.bukkit.command.CommandSender;
@ -148,10 +149,20 @@ public interface Server {
* Gets the name of the update folder. The update folder is used to safely update
* plugins at the right moment on a plugin load.
*
* The update folder name is relative to the plugins folder.
*
* @return The name of the update folder
*/
public String getUpdateFolder();
/**
* Gets the update folder. The update folder is used to safely update
* plugins at the right moment on a plugin load.
*
* @return The name of the update folder
*/
public File getUpdateFolderFile();
/**
* Gets a player object by the given username
*