Bastien Sevajol 6 years ago
parent
commit
4486249a5f
1 changed files with 2 additions and 0 deletions
  1. 2 0
      opencombat/gui/base.py

+ 2 - 0
opencombat/gui/base.py View File

@@ -330,6 +330,8 @@ class Game(TMXGui):
330 330
             self.sound_lib.get_sound('gunshot_default').play()
331 331
 
332 332
         # To avoid all in same time
333
+        # TODO BS 2018-01-24: This should be unecessary when core events sending will be
334
+        # base on time base instead cycle base. Remove it to ensure.
333 335
         delay = random.uniform(0.0, 0.6)
334 336
 
335 337
         self.layer_manager.edit_layer.append_callback(gunshot_trace, duration=0.1, delay=delay)