From 4271b3007fe88c812f7057716aa257cd499e940f Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 18 Nov 2012 17:06:26 +0000 Subject: Corrected a small bug in Entity::print(). --- src/core/entity.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/entity.cc') diff --git a/src/core/entity.cc b/src/core/entity.cc index 70d3a4f..a53f8b8 100644 --- a/src/core/entity.cc +++ b/src/core/entity.cc @@ -247,8 +247,7 @@ void Entity::print() const print_header(); // print entity flags - con_print << " flags ^B"; - + con_print << " flags ^B"; if (has_flag(NonSolid)) { con_print << " nonsolid"; } @@ -264,6 +263,7 @@ void Entity::print() const if (has_flag(KeepAlive)) { con_print << " keepalive"; } + con_print << std::endl; } void Entity::print_header() const -- cgit v1.2.3