Fix error in monster_drop query

This commit is contained in:
P0nk
2023-03-15 22:17:42 +01:00
parent 53768555a2
commit 6bf8785f22

View File

@@ -20,6 +20,7 @@ public class DropDao {
SELECT *
FROM monster_drop
WHERE monster_id = ?;""")
.bind(0, monsterId)
.mapTo(MonsterDrop.class)
.list();
} catch (JdbiException e) {