mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-03 16:45:13 +00:00
fix phpstan
This commit is contained in:
@ -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 = [];
|
||||
|
Reference in New Issue
Block a user