Not sure how we ended up with bold cyan as the default object name color, reverting that to bold white as per MUX/MUSH.

This commit is contained in:
Greg Taylor 2009-10-24 03:54:03 +00:00
parent 239af1593d
commit d06ac3e239

View file

@ -157,12 +157,12 @@ class EvenniaBasicObject(object):
description = target_obj.get_attribute_value('desc')
if description is not None:
retval = "%s%s\r\n%s%s%s" % ("%ch%cc",
retval = "%s%s\r\n%s%s%s" % ("%ch",
target_obj.get_name(show_dbref=show_dbrefs),
target_obj.get_attribute_value('desc'), lock_msg,
"%cn")
else:
retval = "%s%s%s" % ("%ch%cc",
retval = "%s%s%s" % ("%ch",
target_obj.get_name(show_dbref=show_dbrefs),
"%cn")