Typofixes in verschiedenen Objekten

Change-Id: I6f5dd49c11df472e165e427144fe1e5495dae678
diff --git a/std/lightsource.c b/std/lightsource.c
index e4b2245..6975578 100644
--- a/std/lightsource.c
+++ b/std/lightsource.c
@@ -235,12 +235,12 @@
       inv=(users() & all_inventory(environment(environment())))-({ environment() });
       for (i=sizeof(inv)-1; i>=0; i--) 
         if (inv[i]->QueryProp(P_PLAYER_LIGHT)<=0)
-          tell_object(inv[i], "Es wird dunkel als " + environment()->name(WESSEN) +
+          tell_object(inv[i], "Es wird dunkel, als " + environment()->name(WESSEN) +
             " " + QueryProp(P_NAME) + " erlischt.\n" ) ;
         else tell_object(inv[i], CAP( name( WER, 0 ) ) + " erlischt.\n" ) ;
       if (environment()->QueryProp(P_PLAYER_LIGHT)<=0)
         tell_object(environment(), 
-          CAP( name( WER, 1 ) ) + " erlischt und es wird dunkel.\n" ) ;
+          CAP( name( WER, 1 ) ) + " erlischt, und es wird dunkel.\n" ) ;
       else tell_object(environment(), CAP( name( WER, 1 ) ) + " erlischt.\n" ) ;    
     }
     else
@@ -248,7 +248,7 @@
       inv=(users() & all_inventory(environment()));
       for (i=sizeof(inv)-1; i>=0; i--) 
         if (inv[i]->QueryProp(P_PLAYER_LIGHT)<=0)
-          tell_object(inv[i], "Es wird dunkel als " + name(WER,1)
+          tell_object(inv[i], "Es wird dunkel, als " + name(WER,1)
           + " erlischt.\n" ) ;
         else tell_object(inv[i], CAP( name( WER, 0 ) ) + " erlischt.\n" ) ;
     }