removed unused macro debug message

This commit is contained in:
Arthur Ice 2015-01-17 14:53:06 -08:00
parent fd77fbf163
commit 136dee691a

View File

@ -68,19 +68,12 @@ Beacon::Beacon(Mob *at_mob, int lifetime)
caster_id = 0; caster_id = 0;
if(lifetime) if(lifetime)
{
remove_timer.Start(); remove_timer.Start();
}
#ifdef SOLAR
entity_list.Message(0, 0, "Beacon being created at %0.2f %0.2f %0.2f heading %0.2f lifetime %d", GetX(), GetY(), GetZ(), GetHeading(), lifetime);
#endif
} }
Beacon::~Beacon() Beacon::~Beacon()
{ {
#ifdef SOLAR
entity_list.Message(0, 0, "Beacon %d being removed at %0.2f %0.2f %0.2f heading %0.2f", GetID(), GetX(), GetY(), GetZ(), GetHeading());
#endif
} }
bool Beacon::Process() bool Beacon::Process()