From e0410807737e90acc455bc99670c57287e269de7 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sat, 30 Jul 2022 12:15:07 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9C=A0=EC=82=B0=20=ED=8F=AC=EC=9D=B8?= =?UTF-8?q?=ED=8A=B8=EA=B0=80=200=EC=9D=B4=EC=96=B4=EB=8F=84=20=EB=8F=99?= =?UTF-8?q?=EC=9E=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/InheritancePointManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hwe/sammo/InheritancePointManager.php b/hwe/sammo/InheritancePointManager.php index 6c36fcdf..407df345 100644 --- a/hwe/sammo/InheritancePointManager.php +++ b/hwe/sammo/InheritancePointManager.php @@ -121,7 +121,7 @@ class InheritancePointManager $gameStor = KVStorage::getStorage(DB::db(), 'game_env'); if ($storeType === true || ($gameStor->isunited != 0 && !$forceCalc)) { $inheritStor = KVStorage::getStorage(DB::db(), "inheritance_{$ownerID}"); - [$value, $aux] = $inheritStor->getValue($key); + [$value, $aux] = $inheritStor->getValue($key) ?? [0, null]; return $value; }