Move all battle state from IPokemon to an ephemeral IBattlePokemon wrapper
This commit is contained in:
@@ -13,7 +13,7 @@ public class Teravolt : Script, IScriptOnBeforeMoveChoice, IScriptOnAfterMoveCho
|
||||
/// <inheritdoc />
|
||||
public void OnBeforeMoveChoice(IMoveChoice moveChoice)
|
||||
{
|
||||
var battleData = moveChoice.User.BattleData;
|
||||
var battleData = moveChoice.User;
|
||||
if (battleData is null)
|
||||
return;
|
||||
|
||||
@@ -27,7 +27,7 @@ public class Teravolt : Script, IScriptOnBeforeMoveChoice, IScriptOnAfterMoveCho
|
||||
/// <inheritdoc />
|
||||
public void OnAfterMoveChoice(IMoveChoice move)
|
||||
{
|
||||
var battleData = move.User.BattleData;
|
||||
var battleData = move.User;
|
||||
if (battleData is null)
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user