From 1b858ae36cceaae888601b907248bca435eb1a36 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sat, 30 Dec 2023 04:14:57 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20onCalcOpposeStat=EC=9D=B4=20=EC=A0=9C?= =?UTF-8?q?=EB=8C=80=EB=A1=9C=20=EC=A0=84=ED=8C=8C=EB=90=98=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EC=95=98=EC=9D=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/General.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hwe/sammo/General.php b/hwe/sammo/General.php index 3610c49a..627d8d9a 100644 --- a/hwe/sammo/General.php +++ b/hwe/sammo/General.php @@ -806,7 +806,7 @@ class General extends GeneralBase implements iAction continue; } /** @var iAction $iObj */ - $value = $iObj->onCalcStat($this, $statName, $value, $aux); + $value = $iObj->onCalcStat($general, $statName, $value, $aux); } return $value; } @@ -819,7 +819,7 @@ class General extends GeneralBase implements iAction continue; } /** @var iAction $iObj */ - $value = $iObj->onCalcOpposeStat($this, $statName, $value, $aux); + $value = $iObj->onCalcOpposeStat($general, $statName, $value, $aux); } return $value; }