From 604b72bb12e9e4de8ed575ce84724791b1611201 Mon Sep 17 00:00:00 2001 From: Juliano Leal Goncalves Date: Sat, 12 Sep 2020 13:38:17 -0300 Subject: [PATCH] Reword potion effect descriptions for consistency --- Source/items.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Source/items.cpp b/Source/items.cpp index 84643b16c..c4571c92e 100644 --- a/Source/items.cpp +++ b/Source/items.cpp @@ -3318,11 +3318,11 @@ void PrintItemOil(char IDidx) AddPanelString(tempstr); break; case IMISC_FULLHEAL: - strcpy(tempstr, _("fully recover life")); + strcpy(tempstr, _("restore all life")); AddPanelString(tempstr); break; case IMISC_HEAL: - strcpy(tempstr, _("recover partial life")); + strcpy(tempstr, _("restore some life")); AddPanelString(tempstr); break; case IMISC_OLDHEAL: @@ -3334,11 +3334,11 @@ void PrintItemOil(char IDidx) AddPanelString(tempstr); break; case IMISC_MANA: - strcpy(tempstr, _("recover mana")); + strcpy(tempstr, _("restore some mana")); AddPanelString(tempstr); break; case IMISC_FULLMANA: - strcpy(tempstr, _("fully recover mana")); + strcpy(tempstr, _("restore all mana")); AddPanelString(tempstr); break; case IMISC_ELIXSTR: @@ -3374,11 +3374,11 @@ void PrintItemOil(char IDidx) AddPanelString(tempstr); break; case IMISC_REJUV: - strcpy(tempstr, _("recover life and mana")); + strcpy(tempstr, _("restore some life and mana")); AddPanelString(tempstr); break; case IMISC_FULLREJUV: - strcpy(tempstr, _("fully recover life and mana")); + strcpy(tempstr, _("restore all life and mana")); AddPanelString(tempstr); break; }