aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-01-14 08:17:43 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-01-14 08:17:43 -0500
commitf5039deffdf210f4765926dcaf6f8a3dfb591914 (patch)
treea689f806c93d44e1dc2995260ae78353180112f9 /src/world.cpp
parent48cf19db2fc33875e32209eb6e32728d019cd6da (diff)
Particles are drawn inside
Diffstat (limited to 'src/world.cpp')
-rw-r--r--src/world.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/world.cpp b/src/world.cpp
index 6ee7255..cced289 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -1360,6 +1360,7 @@ void IndoorWorld::draw(Player *p){
* Draw all entities.
*/
+ for(auto &part : particles) part->draw();
for(auto &e : entity) e->draw();
p->draw();
}