mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Made the amount of loot generated in custom chests higher
This commit is contained in:
parent
b39ee8228d
commit
0710aab830
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ public class DungeonLoot{
|
|||
|
||||
LootPool pool = event.getTable().getPool("main");
|
||||
if(pool == null){
|
||||
pool = new LootPool(new LootEntry[0], noCondition, new RandomValueRange(3, 6), new RandomValueRange(0), "main");
|
||||
pool = new LootPool(new LootEntry[0], noCondition, new RandomValueRange(5, 10), new RandomValueRange(0), "main");
|
||||
event.getTable().addPool(pool);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue