From 870ef051ba5379b212a80b27eb182e58d0bad89b Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 27 Sep 2025 16:25:34 -0400 Subject: [PATCH] Alternative key ' for console. --- wicked_quest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wicked_quest.py b/wicked_quest.py index a9207f7..cd396af 100755 --- a/wicked_quest.py +++ b/wicked_quest.py @@ -627,7 +627,7 @@ class WickedQuest: altPressed = mods & pygame.KMOD_ALT # Console activation with grave accent key - only in story mode - if event.key == pygame.K_BACKQUOTE: # Grave accent key (`) + if event.key in (pygame.K_BACKQUOTE, pygame.K_QUOTE): # Grave accent key (`) # Open console (only in story mode, not survival) if hasattr(self, 'currentLevel') and self.currentLevel and self.currentLevel.levelId != 999: self.open_console()