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:
parent
239af1593d
commit
d06ac3e239
1 changed files with 2 additions and 2 deletions
|
|
@ -157,12 +157,12 @@ class EvenniaBasicObject(object):
|
||||||
|
|
||||||
description = target_obj.get_attribute_value('desc')
|
description = target_obj.get_attribute_value('desc')
|
||||||
if description is not None:
|
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_name(show_dbref=show_dbrefs),
|
||||||
target_obj.get_attribute_value('desc'), lock_msg,
|
target_obj.get_attribute_value('desc'), lock_msg,
|
||||||
"%cn")
|
"%cn")
|
||||||
else:
|
else:
|
||||||
retval = "%s%s%s" % ("%ch%cc",
|
retval = "%s%s%s" % ("%ch",
|
||||||
target_obj.get_name(show_dbref=show_dbrefs),
|
target_obj.get_name(show_dbref=show_dbrefs),
|
||||||
"%cn")
|
"%cn")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue