From 30bddf48c6a8efd56c0a9e966cc388a57f3595dc Mon Sep 17 00:00:00 2001 From: adrianna Date: Sun, 18 May 2014 00:57:36 +0200 Subject: [PATCH] swapped msb and health/bits in wording to make clear that msb takes precedence --- naja/actions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/naja/actions.py b/naja/actions.py index e1ec1e0..08d6369 100644 --- a/naja/actions.py +++ b/naja/actions.py @@ -94,7 +94,7 @@ class DoNothing(LocationAction): class LoseHealthOrMSB(LocationAction): - TEXT = "Lose {HEALTH} or {MSB}." + TEXT = "Lose {MSB} or {HEALTH}." MSB_GLYPH = ACTION_GLYPHS.DAMAGE def perform_action(self, board, location): @@ -233,7 +233,7 @@ class ShiftBits(LocationAction): class LoseHealthOrMSBAndSetBits(LocationAction): - TEXT = "Lose {HEALTH} or {MSB}, then set %(location_bits)s." + TEXT = "Lose {MSB} or {HEALTH}, then set %(location_bits)s." GLYPHS = (ACTION_GLYPHS.SET_BITS,) MSB_GLYPH = ACTION_GLYPHS.DAMAGE @@ -276,7 +276,7 @@ class GainHealth(LocationAction): class GainHealthAndClearBitsOrMSB(LocationAction): - TEXT = "Gain {HEALTH}, then clear %(location_bits)s or {MSB}." + TEXT = "Gain {HEALTH}, then clear {MSB} or %(location_bits)s." GLYPHS = (ACTION_GLYPHS.HEAL,) MSB_GLYPH = ACTION_GLYPHS.CLEAR_BITS -- 2.34.1