Minor fixes.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-02-13 11:13:27 +01:00
parent 2ebe63a14e
commit eeedbdac03
2 changed files with 2 additions and 2 deletions

View File

@@ -51,6 +51,6 @@ PkmnLib::Library::MoveLibrary* TestLibrary::BuildMoveLibrary() {
PkmnLib::Library::ItemLibrary* TestLibrary::BuildItemLibrary() {
auto lib = new PkmnLib::Library::ItemLibrary();
lib->LoadItem("testItem", new PkmnLib::Library::Item("testItem", CreatureLib::Library::ItemCategory::MiscItem,
CreatureLib::Library::BattleItemCategory::None, 0, {}));
CreatureLib::Library::BattleItemCategory::None, 0, {}, 0));
return lib;
}