diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-26 15:25:03 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-26 15:25:03 -0400 |
commit | 88c21e763178856aef0155595d49085919205951 (patch) | |
tree | e3bcd6caa28bf0014eeccd3a3c8582ec2b1b7e7c /src/ui.cpp | |
parent | 202285e89814929e551f9568b84212282b5883fe (diff) |
mobs are a-okay
Diffstat (limited to 'src/ui.cpp')
-rw-r--r-- | src/ui.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ #include <ui.hpp> +#include <world.hpp> #include <gametime.hpp> extern Menu* currentMenu; @@ -1177,7 +1178,7 @@ EXIT: break; case SDLK_l: currentWorld->addLight({player->loc.x + SCREEN_WIDTH/2, player->loc.y},{1.0f,1.0f,1.0f}); - currentWorld->getLastLight()->follow(player); + //currentWorld->getLastLight()->follow(player); currentWorld->getLastLight()->makeFlame(); break; case SDLK_f: |