home · contact · privacy
Refactor thing addition / removal.
[plomrogue2] / plomrogue / tasks.py
index ef5fc5cda730be8c60d8b33f1c67252ddc4136ed..08a4a4f58119d2818a89a18a5b5e2577f230b945 100644 (file)
@@ -123,15 +123,13 @@ class Task_DROP(Task):
                       if t.type_ == 'BottleDeposit'
                       and t.position == self.thing.position]:
                 t.accept()
-                self.thing.game.things.remove(self.thing.carrying)
-                self.thing.game.changed_fovs = True
+                self.thing.game.remove_thing(self.thing.carrying)
                 break
         elif self.thing.carrying.type_ == 'Hat':
             for t in [t for t in self.thing.game.things
                       if t.type_ == 'HatRemixer'
                       and t.position == self.thing.position]:
                 t.accept(self.thing.carrying)
-                self.thing.game.changed_fovs = True
                 break
         self.thing.carrying = None
 
@@ -232,13 +230,10 @@ class Task_WEAR(Task):
 
     def do(self):
         if self.thing.name in self.thing.game.hats:
-            t = self.thing.game.thing_types['Hat'](self.thing.game,
-                                                   position=self.thing.position)
-            self.thing.game.things += [t]
+            t = self.thing.game.add_thing('Hat', self.thing.position)
             t.design = self.thing.game.hats[self.thing.name]
             del self.thing.game.hats[self.thing.name]
             self.thing.send_msg('CHAT "You drop your hat."')
-            self.game.changed_fovs = True  # thing addition
             for remixer in [t for t in self.thing.game.things
                             if t.type_ == 'HatRemixer'
                             and t.position == self.thing.position]: