Skip to content

Commit

Permalink
change Stun.GiveEffect and GiveEffectForArena
Browse files Browse the repository at this point in the history
remove throw exception, return null. not using code
  • Loading branch information
sonohoshi committed Nov 30, 2023
1 parent d4f74f2 commit 046643e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Lib9c/Model/Buff/Stun.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,14 @@ public override object Clone()

public override BattleStatus.Skill GiveEffect(CharacterBase affectedCharacter, int simulatorWaveTurn, bool copyCharacter = true)
{
throw new NotImplementedException();
// Do not anything
return null;
}

public override ArenaSkill GiveEffectForArena(ArenaCharacter affectedCharacter, int simulatorWaveTurn)
{
throw new NotImplementedException();
// Do not anything
return null;
}
}
}

0 comments on commit 046643e

Please sign in to comment.