From 3766c45c62eeca442e9ab700c09c547f08615b62 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Wed, 29 Jun 2016 17:56:48 -0400 Subject: chests, item dropping --- main.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp index fd8ed4d..1bfce77 100644 --- a/main.cpp +++ b/main.cpp @@ -265,8 +265,8 @@ int main(int argc, char *argv[]) for (const auto &xf : xmlFiles) { if (xf[0] != '.') { XMLDocument xmld; - auto file = (xmlFolder + xf).c_str(); - xmld.LoadFile(file); + auto file = xmlFolder + xf; + xmld.LoadFile(file.c_str()); auto xmle = xmld.FirstChildElement("World"); @@ -286,7 +286,8 @@ int main(int argc, char *argv[]) xmle->DeleteAttribute("dindex"); xmle = xmle->NextSiblingElement(); } - xmld.SaveFile(file, false); + + xmld.SaveFile(file.c_str(), false); } } @@ -328,6 +329,10 @@ int main(int argc, char *argv[]) arena->setBackground(WorldBGType::Forest); arena->setBGM("assets/music/embark.wav"); + + player->inv->addItem("Wood Sword", 10); + + // the main loop, in all of its gloriousness.. std::thread([&]{ while (gameRunning) { -- cgit v1.2.3