Add table, data, and provider method for global drops

This commit is contained in:
P0nk
2023-03-09 20:08:20 +01:00
parent a70f4e303d
commit 53768555a2
7 changed files with 111 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
package database;
import database.drop.GlobalMonsterDropRowMapper;
import database.drop.MonsterDropRowMapper;
import database.maker.MakerIngredientRowMapper;
import database.maker.MakerReagentRowMapper;
@@ -18,6 +19,7 @@ public final class JdbiConfig {
.registerRowMapper(new MakerReagentRowMapper())
.registerRowMapper(new MakerRecipeRowMapper())
.registerRowMapper(new MakerIngredientRowMapper())
.registerRowMapper(new MonsterDropRowMapper());
.registerRowMapper(new MonsterDropRowMapper())
.registerRowMapper(new GlobalMonsterDropRowMapper());
}
}