X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=game_common.py;fp=game_common.py;h=c6fb220ee04cfa7ba90ee512e4239e24fd45b69e;hb=1d3411457a0ac41e86b44c635b6896ba7f3ab0f1;hp=6a77d9c6fa0c5062f73a1b089089416bc054c82e;hpb=17984bc886e3a233b828a53354467bbda2c43692;p=plomrogue2-experiments diff --git a/game_common.py b/game_common.py index 6a77d9c..c6fb220 100644 --- a/game_common.py +++ b/game_common.py @@ -27,11 +27,11 @@ class World: self.terrain_map = self.terrain_map[:y * width_map] + line + \ self.terrain_map[(y + 1) * width_map:] - def get_thing(self, i): + def get_thing(self, id_): for thing in self.things: - if i == thing.id_: + if id_ == thing.id_: return thing - t = self.Thing(self, i) + t = self.Thing(self, id_) self.things += [t] return t