summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tags.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-26 21:30:33 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-26 21:30:33 +0000
commit80f31bee412fa01db4611cdd27862db6a34d419c (patch)
tree1f032864acceb947e4d50df291d8ebafe22c6324 /crawl-ref/source/tags.cc
parentc42e7efab8779a54b7e3e486ae83f4af72b15fb9 (diff)
downloadcrawl-ref-80f31bee412fa01db4611cdd27862db6a34d419c.tar.gz
crawl-ref-80f31bee412fa01db4611cdd27862db6a34d419c.zip
Fix another two instances of monster placement returning false
instead of -1. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6155 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/tags.cc')
-rw-r--r--crawl-ref/source/tags.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/tags.cc b/crawl-ref/source/tags.cc
index d9e574c477..ea38dd05b1 100644
--- a/crawl-ref/source/tags.cc
+++ b/crawl-ref/source/tags.cc
@@ -1217,7 +1217,7 @@ static void tag_construct_lost_items(writer &th)
static void tag_read_you(reader &th, char minorVersion)
{
- char buff[20]; // For birth date
+ char buff[20]; // For birth date.
int i,j;
char count_c;
short count_s;
@@ -1248,7 +1248,7 @@ static void tag_read_you(reader &th, char minorVersion)
you.hp = unmarshallShort(th);
you.hunger = unmarshallShort(th);
- // how many you.equip?
+ // How many you.equip?
count_c = unmarshallByte(th);
for (i = 0; i < count_c; ++i)
you.equip[i] = unmarshallByte(th);