diff options
author | md_5 <git@md-5.net> | 2015-01-31 10:17:00 +1100 |
---|---|---|
committer | md_5 <git@md-5.net> | 2015-01-31 10:17:00 +1100 |
commit | 5bfe821f3d561d1063e1cff344a9a31dac7000b8 (patch) | |
tree | 6815910fe167c899c2167aa461dd8d2636b0844d | |
parent | e3d656cd5ddf85a650a533867fdb9b834c493d43 (diff) | |
download | bukkit-5bfe821f3d561d1063e1cff344a9a31dac7000b8.tar bukkit-5bfe821f3d561d1063e1cff344a9a31dac7000b8.tar.gz bukkit-5bfe821f3d561d1063e1cff344a9a31dac7000b8.tar.lz bukkit-5bfe821f3d561d1063e1cff344a9a31dac7000b8.tar.xz bukkit-5bfe821f3d561d1063e1cff344a9a31dac7000b8.zip |
Deprecate refreshChunk.
This method is not guaranteed to work suitably across all client implementations.
-rw-r--r-- | src/main/java/org/bukkit/World.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/org/bukkit/World.java b/src/main/java/org/bukkit/World.java index 828d228e..c763abe5 100644 --- a/src/main/java/org/bukkit/World.java +++ b/src/main/java/org/bukkit/World.java @@ -283,7 +283,10 @@ public interface World extends PluginMessageRecipient, Metadatable { * @param x X-coordinate of the chunk * @param z Z-coordinate of the chunk * @return Whether the chunk was actually refreshed + * + * @deprecated This method is not guaranteed to work suitably across all client implementations. */ + @Deprecated public boolean refreshChunk(int x, int z); /** |