Forgot to specify global when checking the speech delay.

This commit is contained in:
Storm Dragon 2025-02-15 00:06:23 -05:00
parent 943e2acf53
commit 7f62e6ccca

View File

@ -344,6 +344,7 @@ def speak(text, interrupt=True):
current_time = pygame.time.get_ticks()
# Check if this is the same text within the delay window
global lastSpoken
if (_lastSpoken["text"] == text and
current_time - _lastSpoken["time"] < _speechDelay):
return