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;
|
|
|
|
}
|