Einrueckungen gefixt.

Change-Id: Id483ed05f2e3c1570b107b5f9c34d6fa08e2b0f0
diff --git a/std/player/comm.c b/std/player/comm.c
index 59ce58d..f7900af 100644
--- a/std/player/comm.c
+++ b/std/player/comm.c
@@ -131,18 +131,19 @@
 
   if(!str)
   {
-    if (stat_reports) {
-    string *res=({});
-    if (stat_reports & DO_REPORT_HP)
-      res+=({"Lebenspunkte"});
-    if (stat_reports & DO_REPORT_SP)
-      res+=({"Konzentrationspunkte"});
-    if (stat_reports & DO_REPORT_POISON)
-      res+=({"Vergiftungen"});
-    if (stat_reports & DO_REPORT_WIMPY)
-      res+=({"Vorsicht"});
+    if (stat_reports)
+    {
+      string *res=({});
+      if (stat_reports & DO_REPORT_HP)
+        res+=({"Lebenspunkte"});
+      if (stat_reports & DO_REPORT_SP)
+        res+=({"Konzentrationspunkte"});
+      if (stat_reports & DO_REPORT_POISON)
+        res+=({"Vergiftungen"});
+      if (stat_reports & DO_REPORT_WIMPY)
+        res+=({"Vorsicht"});
 
-    tell_object(ME,break_string(
+      tell_object(ME,break_string(
         "Dir werden jetzt Veraenderungen Deiner "
         +CountUp(res) + " berichtet.",78));
     }