fix phpstan

This commit is contained in:
Dylan K. Taylor
2022-05-13 21:03:49 +01:00
parent 4430f6c5fd
commit 2f2ffe0aa4
3 changed files with 3 additions and 4 deletions

View File

@ -208,7 +208,8 @@ function generateBlockStateUpgradeSchema(array $upgradeTable) : BlockStateUpgrad
($foundVersion >> 24) & 0xff,
($foundVersion >> 16) & 0xff,
($foundVersion >> 8) & 0xff,
($foundVersion & 0xff)
($foundVersion & 0xff),
0
);
foreach(Utils::stringifyKeys($upgradeTable) as $oldName => $blockStateMappings){
$newNameFound = [];