버그 수정

This commit is contained in:
2019-10-04 16:33:00 +09:00
parent 07328847f4
commit 71254e86f4
5 changed files with 11 additions and 8 deletions
+2 -3
View File
@@ -88,9 +88,8 @@ function displaySpecialDomesticInfo(?string $type):string{
]);
}
function displayItemInfo(?int $type):string{
$info = getItemInfo($type);
$text = getItemName($type);
function displayItemInfo(?string $type):string{
[$text, $info] = getItemInfo($type);
$templates = new \League\Plates\Engine(__dir__.'/templates');