geforkt von Mirrors/Paper
SPIGOT-7014: getLootTable API should not persistently update loot table
By: md_5 <git@md-5.net>
Dieser Commit ist enthalten in:
Ursprung
98756897b7
Commit
27ea8b4a25
@ -1,6 +1,7 @@
|
|||||||
package org.bukkit.craftbukkit.entity;
|
package org.bukkit.craftbukkit.entity;
|
||||||
|
|
||||||
import com.google.common.base.Preconditions;
|
import com.google.common.base.Preconditions;
|
||||||
|
import net.minecraft.resources.MinecraftKey;
|
||||||
import net.minecraft.world.entity.EntityInsentient;
|
import net.minecraft.world.entity.EntityInsentient;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.NamespacedKey;
|
import org.bukkit.NamespacedKey;
|
||||||
@ -61,11 +62,7 @@ public abstract class CraftMob extends CraftLivingEntity implements Mob {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public LootTable getLootTable() {
|
public LootTable getLootTable() {
|
||||||
if (getHandle().lootTable == null) {
|
NamespacedKey key = CraftNamespacedKey.fromMinecraft(getHandle().getLootTable());
|
||||||
getHandle().lootTable = getHandle().getDefaultLootTable();
|
|
||||||
}
|
|
||||||
|
|
||||||
NamespacedKey key = CraftNamespacedKey.fromMinecraft(getHandle().lootTable);
|
|
||||||
return Bukkit.getLootTable(key);
|
return Bukkit.getLootTable(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren