Browse Source

✏️ Fix typos and spelling mistakes on 'HeroSpeech' members

pull/2040/head
Juliano Leal Goncalves 5 years ago committed by Anders Jenbo
parent
commit
07e6a98fc4
  1. 8
      Source/effects.h
  2. 2
      Source/towners.cpp

8
Source/effects.h

@ -62,7 +62,7 @@ enum class HeroSpeech {
IveGotABadFeelingAboutThis, IveGotABadFeelingAboutThis,
GotMilk, GotMilk,
ImNotThirsty, ImNotThirsty,
ImNoMilkmade, ImNoMilkmaid,
ICouldBlowUpTheWholeVillage, ICouldBlowUpTheWholeVillage,
YepThatsACowAlright, YepThatsACowAlright,
TooUghHeavy, TooUghHeavy,
@ -96,7 +96,7 @@ enum class HeroSpeech {
TheTownIsSafeFromTheseFoulSpawn, TheTownIsSafeFromTheseFoulSpawn,
RestWellLeoricIllFindYourSon, RestWellLeoricIllFindYourSon,
YourMadnessEndsHereBetrayer, YourMadnessEndsHereBetrayer,
YouLureNoMoreMenToTheirDeaths, YoullLureNoMoreMenToTheirDeaths,
ReturnToHeavenWarriorOfLight, ReturnToHeavenWarriorOfLight,
ICanSeeWhyTheyFearThisWeapon, ICanSeeWhyTheyFearThisWeapon,
ThisMustBeWhatGriswoldWanted, ThisMustBeWhatGriswoldWanted,
@ -114,8 +114,8 @@ enum class HeroSpeech {
IMustBeGettingClose, IMustBeGettingClose,
MaybeItsLockedFromTheInside, MaybeItsLockedFromTheInside,
LooksLikeItsRustedShut, LooksLikeItsRustedShut,
MaybeThereIsAnotherWay, MaybeTheresAnotherWay,
LAST = MaybeThereIsAnotherWay LAST = MaybeTheresAnotherWay
}; };
enum _sfx_id : int16_t { enum _sfx_id : int16_t {

2
Source/towners.cpp

@ -597,7 +597,7 @@ void TalkToCow(PlayerStruct &player, TownerStruct &cow)
} else if (CowClicks >= 8 && !gbIsSpawn) { } else if (CowClicks >= 8 && !gbIsSpawn) {
CowClicks = 4; 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]); player.SaySpecific(snSfx[CowMsg]);
CowMsg++; CowMsg++;
if (CowMsg >= 3) if (CowMsg >= 3)

Loading…
Cancel
Save