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()