summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilemcache.cc
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-07 20:29:28 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-07 20:29:28 +0100
commit81ae2f6d115443d5e75ae4a4c4bb9e3629e93fe7 (patch)
tree3d32f35eb0263c14532384bb297294f9cced0cee /crawl-ref/source/tilemcache.cc
parent8c4d829ecf562112d65cac8e97831d57c3a82a36 (diff)
downloadcrawl-ref-81ae2f6d115443d5e75ae4a4c4bb9e3629e93fe7.tar.gz
crawl-ref-81ae2f6d115443d5e75ae4a4c4bb9e3629e93fe7.zip
Fix 0000353: Make Agnes' tile wield a lajatang.
The short sword probably dates back from before lajatangs were added. Rather than draw in a lajatang, I removed the weapon and added her into the weapon offset function.
Diffstat (limited to 'crawl-ref/source/tilemcache.cc')
-rw-r--r--crawl-ref/source/tilemcache.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/tilemcache.cc b/crawl-ref/source/tilemcache.cc
index ceed86f93d..380b37148a 100644
--- a/crawl-ref/source/tilemcache.cc
+++ b/crawl-ref/source/tilemcache.cc
@@ -461,6 +461,10 @@ bool mcache_monster::get_weapon_offset(int mon_tile, int &ofs_x, int &ofs_y)
ofs_y = -2;
break;
// Shift upwards and to the right.
+ case TILEP_MONS_AGNES:
+ ofs_x = 1;
+ ofs_y = -3;
+ break;
case TILEP_MONS_WIZARD:
ofs_x = 2;
ofs_y = -2;