X-Git-Url: https://plomlompom.com/repos/do_day?a=blobdiff_plain;f=plomrogue%2Fgame.py;h=a57a507cfc0a1f1d98d677068f60b3fc6772f3bd;hb=028871514fd40755055facc5883a4f8076dcebad;hp=143248f4e7afaf0546beca3431fe1df485ca2887;hpb=ba09978e0179406218f052ed29690f1f7c508920;p=plomrogue2 diff --git a/plomrogue/game.py b/plomrogue/game.py index 143248f..a57a507 100755 --- a/plomrogue/game.py +++ b/plomrogue/game.py @@ -184,6 +184,8 @@ class Game(GameBase): def get_string_options(self, string_option_type): if string_option_type == 'direction': return self.map_geometry.directions + elif string_option_type == 'direction+here': + return ['HERE'] + self.map_geometry.directions elif string_option_type == 'char': return [c for c in string.digits + string.ascii_letters + string.punctuation + ' ']