unbenutzte Variablen entfernt

Change-Id: I15488b0f40b2db28e1c750b6ba8ce531036eaa6f
diff --git a/d/seher/haeuser/moebel/lesepult.c b/d/seher/haeuser/moebel/lesepult.c
index b1432f9..3373f36 100644
--- a/d/seher/haeuser/moebel/lesepult.c
+++ b/d/seher/haeuser/moebel/lesepult.c
@@ -413,7 +413,6 @@
 
 int cmd_eintragen(string str)
 {
-int i;
  if (!(MQTBMASTER->QueryTagebuchAufPult(this_player())))
  {
   notify_fail(BS(
diff --git a/obj/tools/ptool.c b/obj/tools/ptool.c
index c3d6a4b..78269e1 100644
--- a/obj/tools/ptool.c
+++ b/obj/tools/ptool.c
@@ -60,7 +60,7 @@
 
 int add(string number)
 {
-  int nr, next, active;
+  int nr, next;
   string room;
   if (!secure())
   { printf("Fehler: -1\n"); return -1; }
@@ -80,15 +80,10 @@
     printf("Raum konnte nicht eingetragen werden, Ergebnis: %d\n", next);
     return 1;
   }
-  // Nicht mehr noetig, Arathorn, 2013-Mai-30
-  //active = "/secure/potionmaster"->SetListNr(room, nr);
-  if (active>=0)
-  {
-    printf("Raum aktiviert in Liste %d\n", nr);
-    dump();
-  }
-  else
-    printf("Fehler beim Aktivieren, Ergebnis: %d\n", active);
+  
+  printf("Raum aktiviert in Liste %d\n", nr);
+  dump();
+
   return 1;
 }
 
@@ -123,7 +118,7 @@
 
 int setlist(string number)
 {
-  int nr, next, active;
+  int nr, active;
   string room;
   if (!secure())
   { printf("Fehler: -1\n"); return -1; }
@@ -148,7 +143,7 @@
 
 int activate()
 {
-  int nr, active;
+  int active;
   string room;
   
   if (!secure())