2 Syntaxfehler gefixt. *hust*

Change-Id: I8f54af6a9cc77e86871a0cdf2ce511d53e646448
diff --git a/std/living/description.c b/std/living/description.c
index f512e9c..75c17b7 100644
--- a/std/living/description.c
+++ b/std/living/description.c
@@ -248,7 +248,7 @@
   {
     if(objectp(ob) && environment(ob)==ME)
     {
-      if((stringp(exl = ob->QueryProp(P_EXTRA_LOOK)))
+      if(stringp(exl = ob->QueryProp(P_EXTRA_LOOK)))
       {
         str += exl;
       }
@@ -369,6 +369,6 @@
   object *els=QueryProp(P_EXTRA_LOOK_OBS);
   if(member(els,ob)!=-1)
   {
-    SetProp(P_EXTRA_LOOK_OBS,QueryProp(els-({ob}));
+    SetProp(P_EXTRA_LOOK_OBS, els-({ob}) );
   }
 }