diff options
author | Simon Edwardsson <simon@crossnet.se> | 2004-10-03 12:56:09 +0000 |
---|---|---|
committer | Simon Edwardsson <simon@crossnet.se> | 2004-10-03 12:56:09 +0000 |
commit | 0b00bf2ccff23b5f565e214b36be3ea823ab59da (patch) | |
tree | 2b43d9c1e9a72b07c26c2386633d6a80751bd25a /src/game.cpp | |
parent | 07af1c32d6d51a4d178ffc4dea7488a949d1e553 (diff) | |
download | mana-0b00bf2ccff23b5f565e214b36be3ea823ab59da.tar.gz mana-0b00bf2ccff23b5f565e214b36be3ea823ab59da.tar.bz2 mana-0b00bf2ccff23b5f565e214b36be3ea823ab59da.tar.xz mana-0b00bf2ccff23b5f565e214b36be3ea823ab59da.zip |
Added tmw_bar_proc, and a stat window, (I have // your stat window kth5 :) )
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index 5b776845..407d87b3 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -265,6 +265,9 @@ void do_input() { action_time = false; } else if(key[KEY_I]) { inventory.toggle(); + action_time = false; + } else if(key[KEY_T]) { + show_stats_dialog = !show_stats_dialog; action_time = false; } } @@ -531,7 +534,7 @@ void do_parse() { char_info->lv = RFIFOW(4); break; } - update_stats_dialog(); + //update_stats_dialog(); if(char_info->hp==0) { ok("Message", "You're now dead, press ok to restart"); WFIFOW(0) = net_w_value(0x00b2); |