summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/traps.cc
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-29 06:09:05 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-29 06:09:05 +0000
commit54a8ee37c5d6bee4ed77eef17bad080c0f81b175 (patch)
tree716c830d70191daf73308a8926f4095d7d7a75ae /crawl-ref/source/traps.cc
parentf44df6134a719e58bb61f48c4d6d12089dd69cb8 (diff)
downloadcrawl-ref-54a8ee37c5d6bee4ed77eef17bad080c0f81b175.tar.gz
crawl-ref-54a8ee37c5d6bee4ed77eef17bad080c0f81b175.zip
Changed player attribute type from unsigned char to unsigned long. Breaks
savefile compatibility. Keep track of how much gold the player has collected, spent at shops, donated, and otherwise used (like at ziggurats) and include that info in the misc section of the character dump file. Place-holder for chaos spawn monster. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7683 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/traps.cc')
-rw-r--r--crawl-ref/source/traps.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/traps.cc b/crawl-ref/source/traps.cc
index 7963073cf2..3ef7b250f4 100644
--- a/crawl-ref/source/traps.cc
+++ b/crawl-ref/source/traps.cc
@@ -1022,7 +1022,7 @@ void free_self_from_net()
else
{
// You try to escape (takes at least 3 turns, and at most 10).
- int escape = do_what;
+ unsigned int escape = do_what;
if (you.duration[DUR_HASTE]) // extra bonus, also Berserk
escape++;