summaryrefslogtreecommitdiff
path: root/src/status.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2015-09-14 06:03:01 +0200
committerBardur Arantsson <bardur@scientician.net>2015-09-14 17:30:47 +0200
commit47fb7807d77c92fa6e72017501d9355d780adf40 (patch)
tree8a4d73b5cedc967742b3711951b47673002b0b34 /src/status.cc
parentf2de788fc3929f3cf05e9f3a69818393e7054dc5 (diff)
Remove TR4_ANTIMAGIC_{30,20,10} flags
They're only used for the Antimagic realm of leveling items and we might as well use ANTIMAGIC_50 there, given the rarity of the flag.
Diffstat (limited to 'src/status.cc')
-rw-r--r--src/status.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/status.cc b/src/status.cc
index 3fbd9708..0a3977c7 100644
--- a/src/status.cc
+++ b/src/status.cc
@@ -308,7 +308,7 @@ static void status_curses(void)
row_bival("Clone", 4, TR4_CLONE, yo++, flag_arr);
row_bival("Temp", 5, TR5_TEMPORARY, yo++, flag_arr);
yo++;
- row_count("Antimagic", 4, TR4_ANTIMAGIC_50, 5, 4, TR4_ANTIMAGIC_30, 3, 4, TR4_ANTIMAGIC_20, 2, 4, TR4_ANTIMAGIC_10, 1, yo++, flag_arr);
+ row_bival("Antimagic", 4, TR4_ANTIMAGIC_50, yo++, flag_arr);
c_put_str(TERM_WHITE, "Press ESC to continue", 23, 0);
Term_fresh();