Skip to content

Commit

Permalink
Merge pull request #239 from MuteTiefling/develop
Browse files Browse the repository at this point in the history
Significantly reduce the rate of super glue in Create loot rewards
  • Loading branch information
MuteTiefling authored Feb 24, 2023
2 parents 9fc2df4 + 8d6f4bf commit a5348d4
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ ServerEvents.genericLootTables((event) => {
table.addPool((pool) => {
pool.rolls = 2.0;
pool.addItem('create:super_glue', 1, 1);
pool.addItem('create:powered_toggle_latch', 1, 1);
pool.addItem('create:powered_latch', 1, 1);
pool.addItem('create:shaft', 1, 8);
pool.addItem('create:analog_lever', 1, 1);
pool.addItem('create:andesite_casing', 1, 8);
pool.addItem('create:belt_connector', 1, 4);
pool.addItem('create:powered_toggle_latch', 3, 1);
pool.addItem('create:powered_latch', 3, 1);
pool.addItem('create:shaft', 3, 8);
pool.addItem('create:analog_lever', 3, 1);
pool.addItem('create:andesite_casing', 3, 8);
pool.addItem('create:belt_connector', 3, 4);
});

table.addPool((pool) => {
Expand Down

0 comments on commit a5348d4

Please sign in to comment.