Remove the RegenerateRoomsAction

This commit is contained in:
Eryn Wells 2023-03-11 00:57:48 -08:00
parent f78bc39e3b
commit 01b549bc6e
2 changed files with 1 additions and 10 deletions

View file

@ -36,13 +36,6 @@ class ExitAction(Action):
raise SystemExit()
class RegenerateRoomsAction(Action):
'''Regenerate the dungeon map'''
def perform(self, engine: 'Engine') -> ActionResult:
return self.failure()
class MoveAction(ActionWithActor):
'''An abstract Action that requires a direction to complete.'''