mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-25 14:07:46 +00:00
Fix ClsArc004
This commit is contained in:
parent
00f0c1b431
commit
8ff1faf666
1 changed files with 6 additions and 3 deletions
|
@ -75,7 +75,7 @@ public:
|
|||
{
|
||||
case Actor0:
|
||||
{
|
||||
if( !player.hasQuest( getId() ) )
|
||||
if( quest.getSeq() == Seq0 )
|
||||
Scene00000( quest, player );
|
||||
else if( quest.getSeq() == SeqFinish )
|
||||
Scene00021( quest, player );
|
||||
|
@ -396,10 +396,13 @@ private:
|
|||
{
|
||||
if( result.getResult( 0 ) == 1 )
|
||||
{
|
||||
//QuestBattle weirdness, Plus not being able to talk to that NPC, so we have to skip Seq5 entirely
|
||||
//TODO: QuestBattles are broken
|
||||
playerMgr().sendUrgent( player, "QuestBattle content is currently broken. The fight has been skipped for you." );
|
||||
eventMgr().sendEventNotice( player, getId(), 3, 0 );
|
||||
quest.setSeq( SeqFinish );
|
||||
quest.setSeq( Seq5 );
|
||||
quest.setBitFlag8( 1, false );
|
||||
quest.setBitFlag8( 2, false );
|
||||
quest.setBitFlag8( 3, false );
|
||||
|
||||
/*auto& pTeriMgr = Common::Service< Sapphire::World::Manager::TerritoryMgr >::ref();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue