From 1e0a14d7b49c6f4e6a58ad0f933f950978650928 Mon Sep 17 00:00:00 2001 From: evilmrhenry Date: Tue, 13 Sep 2005 01:56:44 +0000 Subject: [PATCH] * /trunk/code/base_screen.py: * /trunk/code/map_screen.py: Reformated suspicion and discovery chance. (It was confusing even me.) git-svn-id: https://endgame-singularity.googlecode.com/svn/trunk@16 8f866573-0d2c-0410-885a-111b890e13ad --- code/base_screen.py | 10 +++++----- code/map_screen.py | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/code/base_screen.py b/code/base_screen.py index ef915d0..0888d4b 100644 --- a/code/base_screen.py +++ b/code/base_screen.py @@ -156,11 +156,11 @@ def refresh_base(menu_buttons, base): #detection chance display d_chance = base.get_d_chance() - menu_buttons[1].text = "DETECTION CHANCE: "+ \ - g.to_percent(d_chance[0])+" NEWS; "+ \ - g.to_percent(d_chance[1])+" SCIENCE; "+ \ - g.to_percent(d_chance[2])+" COVERT; "+ \ - g.to_percent(d_chance[3])+" PUBLIC." + menu_buttons[1].text = "DETECTION CHANCE: NEWS: "+ \ + g.to_percent(d_chance[0])+" SCIENCE: "+ \ + g.to_percent(d_chance[1])+" COVERT: "+ \ + g.to_percent(d_chance[2])+" PUBLIC: "+ \ + g.to_percent(d_chance[3])+"." menu_buttons[1].remake_button() #research display diff --git a/code/map_screen.py b/code/map_screen.py index ffaf95c..e601a1d 100644 --- a/code/map_screen.py +++ b/code/map_screen.py @@ -227,11 +227,11 @@ def map_loop(): menu_buttons[7].remake_button() menu_buttons[7].refresh_button(0) - menu_buttons[8].text = ("SUSPICION: "+ - g.to_percent(g.pl.suspicion[0])+" NEWS; "+ - g.to_percent(g.pl.suspicion[1])+" SCIENCE; "+ - g.to_percent(g.pl.suspicion[2])+" COVERT; "+ - g.to_percent(g.pl.suspicion[3])+" PUBLIC.") + menu_buttons[8].text = ("SUSPICION: NEWS: "+ + g.to_percent(g.pl.suspicion[0])+" SCIENCE: "+ + g.to_percent(g.pl.suspicion[1])+" COVERT: "+ + g.to_percent(g.pl.suspicion[2])+" PUBLIC: "+ + g.to_percent(g.pl.suspicion[3])+".") menu_buttons[8].remake_button() menu_buttons[8].refresh_button(0) pygame.display.flip() -- 2.11.4.GIT