What's the time, mr wolf?

By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot
2011-02-01 14:53:26 +00:00
parent d45f410092
commit c818125fb8
2 changed files with 43 additions and 0 deletions

View File

@@ -79,14 +79,18 @@ public interface Server {
* Gets the in-game time on the server (in hours*1000)
*
* @return The current time in hours*1000
* @deprecated Use World.getTime
*/
@Deprecated
public long getTime();
/**
* Sets the in-game time on the server (in hours*1000)
*
* @param time The time to set the in-game time to (in hours*1000)
* @deprecated Use World.setTime
*/
@Deprecated
public void setTime(long time);
/**