3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 04:50:05 +01:00
Paper/nms-patches/LootItemConditionSurvivesExplosion.patch

13 Zeilen
493 B
Diff

2019-04-23 04:00:00 +02:00
--- a/net/minecraft/server/LootItemConditionSurvivesExplosion.java
+++ b/net/minecraft/server/LootItemConditionSurvivesExplosion.java
@@ -25,7 +25,8 @@
2019-12-10 23:00:00 +01:00
Random random = loottableinfo.a();
2019-04-23 04:00:00 +02:00
float f = 1.0F / ofloat;
- return random.nextFloat() <= f;
+ // CraftBukkit - <= to < to allow for plugins to completely disable block drops from explosions
+ return random.nextFloat() < f;
} else {
return true;
}