Minecraft 1.12-pre2 API Changes
By: md_5 <git@md-5.net>
This commit is contained in:
parent
05d2efaa86
commit
75a18fd5ad
29 changed files with 785 additions and 36 deletions
|
@ -42,6 +42,7 @@ import org.bukkit.scoreboard.ScoreboardManager;
|
|||
import org.bukkit.util.CachedServerIcon;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import org.bukkit.advancement.Advancement;
|
||||
import org.bukkit.generator.ChunkGenerator;
|
||||
|
||||
import org.bukkit.inventory.ItemFactory;
|
||||
|
@ -439,6 +440,12 @@ public interface Server extends PluginMessageRecipient {
|
|||
*/
|
||||
public void reload();
|
||||
|
||||
/**
|
||||
* Reload only the Minecraft data for the server. This includes custom
|
||||
* advancements and loot tables.
|
||||
*/
|
||||
public void reloadData();
|
||||
|
||||
/**
|
||||
* Returns the primary logger associated with this server instance.
|
||||
*
|
||||
|
@ -921,6 +928,14 @@ public interface Server extends PluginMessageRecipient {
|
|||
*/
|
||||
Entity getEntity(UUID uuid);
|
||||
|
||||
/**
|
||||
* Get the advancement specified by this key.
|
||||
*
|
||||
* @param key unique advancement key
|
||||
* @return advancement or null if not exists
|
||||
*/
|
||||
Advancement getAdvancement(NamespacedKey key);
|
||||
|
||||
/**
|
||||
* @see UnsafeValues
|
||||
* @return the unsafe values instance
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue