mirror of
https://github.com/evennia/evennia.git
synced 2026-03-26 01:36:32 +01:00
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')
|
||||
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")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue