From 07e6a98fc491b813cfbf7939640c04b024f20581 Mon Sep 17 00:00:00 2001 From: Juliano Leal Goncalves Date: Sun, 23 May 2021 21:11:12 -0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20typos=20and=20spelli?= =?UTF-8?q?ng=20mistakes=20on=20'HeroSpeech'=20members?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source/effects.h | 8 ++++---- Source/towners.cpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/effects.h b/Source/effects.h index 9c3aafa62..b1e726611 100644 --- a/Source/effects.h +++ b/Source/effects.h @@ -62,7 +62,7 @@ enum class HeroSpeech { IveGotABadFeelingAboutThis, GotMilk, ImNotThirsty, - ImNoMilkmade, + ImNoMilkmaid, ICouldBlowUpTheWholeVillage, YepThatsACowAlright, TooUghHeavy, @@ -96,7 +96,7 @@ enum class HeroSpeech { TheTownIsSafeFromTheseFoulSpawn, RestWellLeoricIllFindYourSon, YourMadnessEndsHereBetrayer, - YouLureNoMoreMenToTheirDeaths, + YoullLureNoMoreMenToTheirDeaths, ReturnToHeavenWarriorOfLight, ICanSeeWhyTheyFearThisWeapon, ThisMustBeWhatGriswoldWanted, @@ -114,8 +114,8 @@ enum class HeroSpeech { IMustBeGettingClose, MaybeItsLockedFromTheInside, LooksLikeItsRustedShut, - MaybeThereIsAnotherWay, - LAST = MaybeThereIsAnotherWay + MaybeTheresAnotherWay, + LAST = MaybeTheresAnotherWay }; enum _sfx_id : int16_t { diff --git a/Source/towners.cpp b/Source/towners.cpp index 5cd587344..f3a1d6ab8 100644 --- a/Source/towners.cpp +++ b/Source/towners.cpp @@ -597,7 +597,7 @@ void TalkToCow(PlayerStruct &player, TownerStruct &cow) } else if (CowClicks >= 8 && !gbIsSpawn) { CowClicks = 4; - static const HeroSpeech snSfx[3] = { HeroSpeech::YepThatsACowAlright, HeroSpeech::ImNotThirsty, HeroSpeech::ImNoMilkmade }; + static const HeroSpeech snSfx[3] = { HeroSpeech::YepThatsACowAlright, HeroSpeech::ImNotThirsty, HeroSpeech::ImNoMilkmaid }; player.SaySpecific(snSfx[CowMsg]); CowMsg++; if (CowMsg >= 3)