From ae08764e26ccd9638f8000369ba4fab2e422ec8f Mon Sep 17 00:00:00 2001 From: Lucien Sadi Date: Mon, 8 Jul 2019 08:33:05 -0700 Subject: [PATCH] Added helpful message to failed FREEZE when the target is already frozen. --- src/act.wizard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/act.wizard.cpp b/src/act.wizard.cpp index cb80ef988..4b02afe5b 100644 --- a/src/act.wizard.cpp +++ b/src/act.wizard.cpp @@ -2789,7 +2789,7 @@ ACMD(do_wizutil) return; } if (PLR_FLAGGED(vict, PLR_FROZEN)) { - send_to_char("Your victim is already pretty cold.\r\n", ch); + send_to_char("Your victim is already pretty cold. Did you mean to THAW them?\r\n", ch); return; } PLR_FLAGS(vict).SetBit(PLR_FROZEN);