From f01629dc14b1ee05b44d2e38b3dffbc1441fd85f Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Tue, 16 Oct 2012 17:13:26 +0000 Subject: Corrects a small bug in the list_particles function where the summary is printed multiple times. --- src/render/particles.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/render') diff --git a/src/render/particles.cc b/src/render/particles.cc index 2cc1b1a..4624539 100644 --- a/src/render/particles.cc +++ b/src/render/particles.cc @@ -62,8 +62,8 @@ void ParticleScript::list() script = script->next(); } con_print << " " << (*it).second->label() << strval << " " << count << " " << aux::plural("ejector", count) << std::endl; - con_print << particlescript_registry.size() << " particle scripts" << std::endl; } + con_print << particlescript_registry.size() << " particle scripts" << std::endl; } void ParticleScript::clear() -- cgit v1.2.3