From e73443245850c17be63996e97549416d6cba1759 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Tue, 7 Jul 2009 10:44:55 +0000 Subject: Tiles: Save per-character equipment setting and use it in the character selection menu. TODO: Use this instead of dolls.txt for initialising dolls, falling back on dolls.txt if name.tdl cannot be found and for new characters. I've tried displaying floor type but found it resulted in an information overload, and also distracts from the main information (species, equipment), esp. since it's mostly floor and most of the tile is covered anyway. I left it in (though commented out), so it's in the repository, but will remove it afterwards. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10122 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/player.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'crawl-ref/source/player.cc') diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc index 492e5219a5..0bbc88ac34 100644 --- a/crawl-ref/source/player.cc +++ b/crawl-ref/source/player.cc @@ -6057,6 +6057,11 @@ player_save_info player_save_info::operator=(const player& rhs) species = rhs.species; class_name = rhs.class_name; religion = rhs.religion; +#ifdef USE_TILE +// floor_tile = 0; + held_in_net = false; +#endif + return (*this); } -- cgit v1.2.3-54-g00ecf