feat: 포인트 초기화 추가

- 급하니까 일단 땜빵
This commit is contained in:
2024-07-10 18:11:10 +00:00
parent 7c9d5d34f6
commit d8870caf29
5 changed files with 129 additions and 9 deletions
+8
View File
@@ -99,11 +99,19 @@ $lastInheritPointLogs = $db->query('SELECT id, server_id, year, month, date, tex
'nextSpecial' => GameConst::$inheritSpecificSpecialPoint,
'minSpecificUnique' => GameConst::$inheritItemUniqueMinPoint,
'checkOwner' => GameConst::$inheritCheckOwnerPoint,
'bornStatPoint' => GameConst::$inheritBornStatPoint,
],
'availableSpecialWar' => $avilableSpecialWar,
'availableUnique' => $availableUnique,
'lastInheritPointLogs' => $lastInheritPointLogs,
'availableTargetGeneral' => $availableTargetGeneral,
'currentStat' => [
'leadership' => Util::clamp($me->getVar('leadership'), GameConst::$defaultStatMin, GameConst::$defaultStatMax),
'strength' => Util::clamp($me->getVar('strength'), GameConst::$defaultStatMin, GameConst::$defaultStatMax),
'intel' => Util::clamp($me->getVar('intel'), GameConst::$defaultStatMin, GameConst::$defaultStatMax),
'statMin' => GameConst::$defaultStatMin,
'statMax' => GameConst::$defaultStatMax,
]
]
]) ?>
</head>