mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
15 lines
656 B
Diff
15 lines
656 B
Diff
--- a/net/minecraft/server/LootItemConditionRandomChanceWithLooting.java
|
|
+++ b/net/minecraft/server/LootItemConditionRandomChanceWithLooting.java
|
|
@@ -28,6 +28,11 @@
|
|
if (entity instanceof EntityLiving) {
|
|
i = EnchantmentManager.g((EntityLiving) entity);
|
|
}
|
|
+ // CraftBukkit start - only use lootingModifier if set by Bukkit
|
|
+ if (loottableinfo.hasContextParameter(LootContextParameters.LOOTING_MOD)) {
|
|
+ i = loottableinfo.getContextParameter(LootContextParameters.LOOTING_MOD);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
|
|
return loottableinfo.b().nextFloat() < this.a + (float) i * this.b;
|
|
}
|