From: <gi...@cr...> - 2025-07-28 06:00:14
|
via f537972d3b6967dc86d525633f080bb4ffaeb8ab (commit) from 202f19ae06af17b68d3c876fcf654ed3ff69992e (commit) ----------------------------------------------------------------------- commit f537972d3b6967dc86d525633f080bb4ffaeb8ab Author: hellmonk <nld...@gm...> Date: Mon Jul 28 00:53:50 2025 -0500 Improve a tempering message (projectNoob) Don't claim that you can't see that place when you can see that place. Closes #4626. ----------------------------------------------------------------------- Summary of changes: crawl-ref/source/contrib/zlib | 2 +- crawl-ref/source/target.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crawl-ref/source/contrib/zlib b/crawl-ref/source/contrib/zlib index 1229e39b4d..2d19c60d29 160000 --- a/crawl-ref/source/contrib/zlib +++ b/crawl-ref/source/contrib/zlib @@ -1 +1 @@ -Subproject commit 1229e39b4db7cd6718ee0a5dc0c3c0454a42ada3 +Subproject commit 2d19c60d294880b6ffc740ee0bb090953ed85259 diff --git a/crawl-ref/source/target.cc b/crawl-ref/source/target.cc index e4fe5e2918..cf0fa71826 100644 --- a/crawl-ref/source/target.cc +++ b/crawl-ref/source/target.cc @@ -2640,7 +2640,7 @@ bool targeter_tempering::valid_aim(coord_def a) monster* mons = monster_at(a); if (!mons || !you.can_see(*mons) || !mons->friendly()) - return false; + return notify_fail("There's nothing to be tempered there."); if (mons->has_ench(ENCH_TEMPERED)) return notify_fail("You cannot target a construct which is already augmented."); -- Dungeon Crawl Stone Soup |