From 88206354f1e905b975239e3b1e66fd749043e8d5 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 745e4190..f4952a17 100644 --- a/hwe/sammo/General.php +++ b/hwe/sammo/General.php @@ -914,7 +914,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; } @@ -927,7 +927,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; }