Bastien Sevajol 7 anni fa
parent
commit
4486249a5f
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      opencombat/gui/base.py

+ 2 - 0
opencombat/gui/base.py Vedi 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)