From c955b086b22d534fae86a847f30bd2a3daed342e Mon Sep 17 00:00:00 2001 From: disperse Date: Tue, 7 May 2024 11:57:46 -0400 Subject: [PATCH] Add missing hardware shop string --- src/dungeon.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dungeon.c b/src/dungeon.c index 034d1991f..a40096514 100644 --- a/src/dungeon.c +++ b/src/dungeon.c @@ -3438,6 +3438,9 @@ shop_string(int rtype) case WANDSHOP: str = "wand shop"; break; + case TOOLSHOP: + str = "hardware store"; + break; case BOOKSHOP: str = "bookstore"; break;