Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/MAFH2/MafhGameManager.py
diff options
context:
space:
mode:
authorJustin Lewis <jtl1728@rit.edu>2010-02-16 18:25:41 (GMT)
committer Justin Lewis <jtl1728@rit.edu>2010-02-16 18:25:41 (GMT)
commit78dc0edc27e6aa663e2e030b8fa3d886564a2450 (patch)
tree364507b55812b6be5912639cec2b7fcd4faf88b9 /MAFH2/MafhGameManager.py
parentbfe92e7e0ca74da27b9efe1ea14eeafdc208930c (diff)
Added mini and micro map.
Also fixed terminal spacing to fill space next to map. Map also now crops (didn't in original, used background overlay hack) correctly to it's location
Diffstat (limited to 'MAFH2/MafhGameManager.py')
-rw-r--r--MAFH2/MafhGameManager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/MAFH2/MafhGameManager.py b/MAFH2/MafhGameManager.py
index 9c8fb94..5106585 100644
--- a/MAFH2/MafhGameManager.py
+++ b/MAFH2/MafhGameManager.py
@@ -10,7 +10,7 @@ class MafhGameManager(GameEngineElement):
GameEngineElement.__init__(self, has_draw=False, has_event=True)
self.add_to_engine()
- self.game_engine.add_object('mesg', TermBox(300,700,800,200,5) )
+ self.game_engine.add_object('mesg', TermBox(200,700,900,200,5) )
self.game_engine.get_object('mesg').add_line("Welcome to Fortune Hunter")
self.game_engine.add_object('dungeon', Dungeon( self.game_engine.get_object('profile').dungeon_id))