fix(Core/GameObject): Pumpkin Shrine (#13460)

Co-authored-by: M'Dic <joshua.lee.betts@gmail.com>
This commit is contained in:
Revision
2023-03-16 18:57:36 +01:00
committed by GitHub
parent 28dcce7cd8
commit 6e39ffa64e
3 changed files with 101 additions and 32 deletions

View File

@@ -155,6 +155,9 @@ public:
if (data == SPECIAL)
encounter = SPECIAL;
break;
case DATA_HORSEMAN_EVENT:
encounter = data;
break;
}
}
@@ -177,6 +180,8 @@ public:
{
if (type == TYPE_MOGRAINE_AND_WHITE_EVENT)
return encounter;
else if (type == DATA_HORSEMAN_EVENT)
return encounter;
return 0;
}
private: