From: Ari Johnson Date: Tue, 20 Feb 2007 15:58:34 +0000 (+0000) Subject: better messages when attempting to wipe SAFE attributes X-Git-Tag: 0.73~194 X-Git-Url: https://git.theari.com/?a=commitdiff_plain;h=35e67e4982009f65f359503b13c58c0e4fd835be;p=cobramush.git better messages when attempting to wipe SAFE attributes --- diff --git a/src/attrib.c b/src/attrib.c index 29ed6b7..9300272 100644 --- a/src/attrib.c +++ b/src/attrib.c @@ -1771,8 +1771,8 @@ do_set_atr(dbref thing, const char *RESTRICT atr, const char *RESTRICT s, (flags & 0x02) ? AF_NOPROG : NOTHING) : atr_clr(thing, name, player); if (res == AE_SAFE) { - notify(player, - T("That attribute is SAFE. Set it !SAFE to modify it.")); + notify_format(player, T("Attribute %s is SAFE. Set it !SAFE to modify it."), + name); return 0; } else if (res == AE_BADNAME) { notify(player, T("That's not a very good name for an attribute."));