aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-05-31 08:49:48 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-05-31 08:49:48 -0400
commitb22860234ff7991c851211042a9832d88ccbb958 (patch)
tree255f72ca00a3567c69b7f8f0bc7889aa3b12689d /src/ui.cpp
parent7dd64863c9ca613cf6969442f621849762b20115 (diff)
entitys can modify xml
Diffstat (limited to 'src/ui.cpp')
-rw-r--r--src/ui.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui.cpp b/src/ui.cpp
index 7ae444c..5a7ada1 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -1408,7 +1408,9 @@ EXIT:
if (debug)
posFlag ^= true;
else {
- currentWorld->addStructure(FIRE_PIT, player->loc.x, player->loc.y, "", "");
+ auto s = new Structures();
+ s->spawn(FIRE_PIT, player->loc.x, player->loc.y);
+ currentWorld->addStructure(s);
currentWorld->addLight({player->loc.x + SCREEN_WIDTH/2, player->loc.y},{1.0f,1.0f,1.0f});
//currentWorld->getLastLight()->follow(currentWorld->build.back());
currentWorld->getLastLight()->makeFlame();