projects
/
cobramush.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7669eb
)
attrib_set(obj/attr,) with EMPTY_ATTRS off sets the attribute to a single space
author
Ari Johnson
<ari@theari.com>
Thu, 7 Jun 2007 23:18:08 +0000
(23:18 +0000)
committer
Ari Johnson
<ari@theari.com>
Thu, 7 Jun 2007 23:18:08 +0000
(23:18 +0000)
game/txt/changes/0.73
patch
|
blob
|
history
src/fundb.c
patch
|
blob
|
history
diff --git
a/game/txt/changes/0.73
b/game/txt/changes/0.73
index 96e9c5c3b3fda64a50bdda35ba77589a2fdefbf4..f1f600bc123b25d0808c87f86afc3f78b86abaf0 100644
(file)
--- a/
game/txt/changes/0.73
+++ b/
game/txt/changes/0.73
@@
-199,4
+199,6
@@
CobraMUSH Version 0.73
* @poll with no argument now displays the current poll; use
@poll/clear to clear it [AEJ]
* default() can take multiple attributes to try in order [AEJ]
+ * attrib_set(obj/attr,) with EMPTY_ATTRS off sets the attribute to a
+ single space [AEJ]
diff --git
a/src/fundb.c
b/src/fundb.c
index e416168db577d04699c9b7db48dc4a93603b5bd9..b6665d9869e9e90244b000d3c47d9c952c982ea6 100644
(file)
--- a/
src/fundb.c
+++ b/
src/fundb.c
@@
-1939,6
+1939,8
@@
FUNCTION(fun_attrib_set)
}
if (nargs == 1) {
do_set_atr(thing, s, NULL, executor, 1);
+ } else if (strlen(args[1]) == 0 && !EMPTY_ATTRS) {
+ do_set_atr(thing, s, " ", executor, 1);
} else {
do_set_atr(thing, s, args[1], executor, 1);
}