From: <gi...@cr...> - 2025-07-26 12:50:11
|
via ac1049ab153970bc300aa202dab48d3f764fddee (commit) via 872aa194569a94d29d37125feb50c8780ec44302 (commit) via 2effaad7b1f0224da8ceae7afb9aedce868777e8 (commit) from e9fc4eb682203603134e32451c323dc48d76cef6 (commit) ----------------------------------------------------------------------- commit ac1049ab153970bc300aa202dab48d3f764fddee Author: DracoOmega <dra...@gm...> Date: Sat Jul 26 10:17:21 2025 -0230 Fix !f inscription not working for weapons on (a) (code2828) commit 872aa194569a94d29d37125feb50c8780ec44302 Author: DracoOmega <dra...@gm...> Date: Sat Jul 26 10:16:48 2025 -0230 Remove an out-of-date part of talisman descriptions (mysticsailboat) Technically they're still slow, but this is no different than other things you put on, like amulets, that don't get a special note about this when examined. commit 2effaad7b1f0224da8ceae7afb9aedce868777e8 Author: DracoOmega <dra...@gm...> Date: Sat Jul 26 10:15:52 2025 -0230 Fix Sacrifice Words giving the wrong mutation Whoops >.> ----------------------------------------------------------------------- Summary of changes: crawl-ref/source/describe.cc | 4 ---- crawl-ref/source/quiver.cc | 2 +- crawl-ref/source/sacrifice-data.h | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc index 9fdca3be43..c978d4412f 100644 --- a/crawl-ref/source/describe.cc +++ b/crawl-ref/source/describe.cc @@ -7672,10 +7672,6 @@ static string _describe_talisman(const item_def &item, bool verbose) { if (crawl_state.need_save && item.is_identified()) description << _equipment_property_change(item); - - description << "\n\nA period of sustained concentration is needed to " - "enter or leave forms. To leave this form, evoke the " - "talisman again."; } } diff --git a/crawl-ref/source/quiver.cc b/crawl-ref/source/quiver.cc index 9459a95c01..5dbb5293e9 100644 --- a/crawl-ref/source/quiver.cc +++ b/crawl-ref/source/quiver.cc @@ -202,7 +202,7 @@ namespace quiver bool action::do_inscription_check() const { const int slot = get_item(); - if (slot <= 0 || slot >= ENDOFPACK || !you.inv[slot].defined()) + if (slot < 0 || slot >= ENDOFPACK || !you.inv[slot].defined()) return true; return check_warning_inscriptions(you.inv[slot], OPER_FIRE); diff --git a/crawl-ref/source/sacrifice-data.h b/crawl-ref/source/sacrifice-data.h index 58ef7044c3..02f677c167 100644 --- a/crawl-ref/source/sacrifice-data.h +++ b/crawl-ref/source/sacrifice-data.h @@ -37,7 +37,7 @@ static const sacrifice_def sac_data[] = nullptr, }, -{ ABIL_RU_SACRIFICE_WORDS, MUT_HOARD_POTIONS, +{ ABIL_RU_SACRIFICE_WORDS, MUT_HOARD_SCROLLS, "sacrifice your ability to read when uninjured", "sacrificed words", -- Dungeon Crawl Stone Soup |