From cc9ba6c05755e235c14daa555bbd037813f91a6e Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Thu, 11 Dec 2008 11:31:22 +0000 Subject: * Nerf harpies a bit: they are now slower and have no bite attack (which didn't make sense anyway). * Also list player god in the saved game selection menu. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7808 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/tags.cc | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'crawl-ref/source/tags.cc') diff --git a/crawl-ref/source/tags.cc b/crawl-ref/source/tags.cc index 98eb7be697..9f1bae2103 100644 --- a/crawl-ref/source/tags.cc +++ b/crawl-ref/source/tags.cc @@ -1261,24 +1261,24 @@ static void tag_read_you(reader &th, char minorVersion) unmarshallCString(th, you.your_name, 30); - you.religion = static_cast(unmarshallByte(th)); - you.piety = unmarshallByte(th); - you.rotting = unmarshallByte(th); - you.symbol = unmarshallByte(th); - you.colour = unmarshallByte(th); - you.pet_target = unmarshallShort(th); - - you.max_level = unmarshallByte(th); - you.where_are_you = static_cast( unmarshallByte(th) ); - you.char_direction = static_cast(unmarshallByte(th)); - you.your_level = unmarshallByte(th); - you.is_undead = static_cast(unmarshallByte(th)); - you.special_wield = unmarshallByte(th); - you.berserk_penalty = unmarshallByte(th); - you.sage_bonus_skill = static_cast(unmarshallShort(th)); + you.religion = static_cast(unmarshallByte(th)); + you.piety = unmarshallByte(th); + you.rotting = unmarshallByte(th); + you.symbol = unmarshallByte(th); + you.colour = unmarshallByte(th); + you.pet_target = unmarshallShort(th); + + you.max_level = unmarshallByte(th); + you.where_are_you = static_cast( unmarshallByte(th) ); + you.char_direction = static_cast(unmarshallByte(th)); + you.your_level = unmarshallByte(th); + you.is_undead = static_cast(unmarshallByte(th)); + you.special_wield = unmarshallByte(th); + you.berserk_penalty = unmarshallByte(th); + you.sage_bonus_skill = static_cast(unmarshallShort(th)); you.sage_bonus_degree = unmarshallLong(th); - you.level_type = static_cast( unmarshallByte(th) ); - you.level_type_name = unmarshallString(th); + you.level_type = static_cast( unmarshallByte(th) ); + you.level_type_name = unmarshallString(th); if (minorVersion >= TAG_MINOR_LUADGN) { -- cgit v1.2.3-54-g00ecf