mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
13 lines
493 B
Diff
13 lines
493 B
Diff
--- a/net/minecraft/server/LootItemConditionSurvivesExplosion.java
|
|
+++ b/net/minecraft/server/LootItemConditionSurvivesExplosion.java
|
|
@@ -25,7 +25,8 @@
|
|
Random random = loottableinfo.b();
|
|
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;
|
|
}
|