Correction d'un commentaire

This commit is contained in:
Yannis 2024-01-06 19:49:46 +01:00
parent b1d7dc7a8b
commit f7d1ab976c

View file

@ -34,7 +34,7 @@ class DialogsManager:
print("next") print("next")
def next_dialog(self): def next_dialog(self):
"""Passe au dialogue suivant. Renvoie True si le dialogue est fini.""" """Passe au dialogue suivant. Appelle le callback si le dialogue est fini."""
self.current_dialog_id += 1 self.current_dialog_id += 1
self.writing_dialog = True self.writing_dialog = True
if self.current_dialog_id >= len(self.current_dialogs): # Le dialogue est fini. if self.current_dialog_id >= len(self.current_dialogs): # Le dialogue est fini.
@ -42,6 +42,7 @@ class DialogsManager:
self.current_dialog_id = -1 self.current_dialog_id = -1
self.writing_dialog = False self.writing_dialog = False
self.reading_dialog = False self.reading_dialog = False
self.event_handler.remove_button_area("next_dialog")
if self.dialogue_finished_callback is not None: if self.dialogue_finished_callback is not None:
self.dialogue_finished_callback() self.dialogue_finished_callback()