Browse Source

change FIXME in TODO

Bastien Sevajol 6 years ago
parent
commit
ae1aad2a01
1 changed files with 2 additions and 1 deletions
  1. 2 1
      opencombat/gui/actor.py

+ 2 - 1
opencombat/gui/actor.py View File

@@ -108,7 +108,8 @@ class BaseActor(Actor):
108 108
         return [
109 109
             self.weapon_image_applier.get_image_for_weapon(
110 110
                 self.mode,
111
-                self.weapons[0],  # FIXME
111
+                # TODO BS 2018-02-08: Change this when weapon management enhanced
112
+                self.weapons[0],
112 113
             )
113 114
         ]
114 115