9
0
mirror of https://github.com/Xiao-MoMi/Custom-Crops.git synced 2025-12-30 12:29:12 +00:00
This commit is contained in:
XiaoMoMi
2023-06-29 20:22:09 +08:00
parent 65518aeebf
commit e7ec94595d
2 changed files with 2 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ plugins {
}
group = 'net.momirealms'
version = '3.3.0.0'
version = '3.3.0.1'
repositories {
mavenCentral()

View File

@@ -58,6 +58,7 @@ public class QualityLoot extends Loot {
for (int j = 0; j < qualityRatio.length; j++) {
if (random < qualityRatio[j]) {
dropItem(location, qualityLoots[j], player);
break;
}
}
}