P_EXTRA_LOOK ignorieren, wenn es ein Leerstring ist.
Closes #29265
Change-Id: I425e1bbc7898c795389ee075fdddaeaf33add4ab
diff --git a/std/living/description.c b/std/living/description.c
index 5b6a89f..b6f63c2 100644
--- a/std/living/description.c
+++ b/std/living/description.c
@@ -248,7 +248,8 @@
{
if(objectp(ob) && environment(ob)==ME)
{
- if(stringp(exl = ob->QueryProp(P_EXTRA_LOOK)))
+ exl=ob->QueryProp(P_EXTRA_LOOK);
+ if(stringp(exl) && sizeof(exl))
{
exl=replace_personal(exl, ({ME}), 1);
// Ist das letzte Zeichen kein \n, brechen wir um.