mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-06-03 22:57:45 +00:00
typo
This commit is contained in:
parent
d71450ccfa
commit
f61cc56ff8
3 changed files with 13 additions and 13 deletions
|
@ -70,7 +70,7 @@ class ClsArc000 : public EventScript
|
||||||
|
|
||||||
void onMobKill( Entity::Player& player, uint64_t npcId )
|
void onMobKill( Entity::Player& player, uint64_t npcId )
|
||||||
{
|
{
|
||||||
if( npcId != Enemy0 || Enemy1 || Enemy2 )
|
if( npcId != Enemy0 || npcId != Enemy1 || npcId != Enemy2 )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
auto currentKC37 = player.getQuestUI8AL( getId() ) + 1;
|
auto currentKC37 = player.getQuestUI8AL( getId() ) + 1;
|
||||||
|
|
|
@ -147,7 +147,7 @@ class ClsArc001 : public EventScript
|
||||||
|
|
||||||
void onMobKill( Entity::Player& player, uint64_t npcId )
|
void onMobKill( Entity::Player& player, uint64_t npcId )
|
||||||
{
|
{
|
||||||
if( npcId != Enemy0 || Enemy1 )
|
if( npcId != Enemy0 || npcId != Enemy1 )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
auto currentKC5 = player.getQuestUI8AL( getId() ) + 1;
|
auto currentKC5 = player.getQuestUI8AL( getId() ) + 1;
|
||||||
|
|
|
@ -161,7 +161,7 @@ class ClsArc002 : public EventScript
|
||||||
|
|
||||||
void onMobKill( Entity::Player& player, uint64_t npcId )
|
void onMobKill( Entity::Player& player, uint64_t npcId )
|
||||||
{
|
{
|
||||||
if( npcId != Enemy0 || Enemy1 )
|
if( npcId != Enemy0 || npcId != Enemy1 )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
auto currentKC39 = player.getQuestUI8AL( getId() ) + 1;
|
auto currentKC39 = player.getQuestUI8AL( getId() ) + 1;
|
||||||
|
|
Loading…
Add table
Reference in a new issue