mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 09:56:06 +00:00
Casting cleanup and removed some 32-bit string-int leftovers
This commit is contained in:
@ -260,8 +260,8 @@ class PluginManager{
|
||||
|
||||
$plugins[$name] = $file;
|
||||
|
||||
$softDependencies[$name] = (array) $description->getSoftDepend();
|
||||
$dependencies[$name] = (array) $description->getDepend();
|
||||
$softDependencies[$name] = $description->getSoftDepend();
|
||||
$dependencies[$name] = $description->getDepend();
|
||||
|
||||
foreach($description->getLoadBefore() as $before){
|
||||
if(isset($softDependencies[$before])){
|
||||
|
Reference in New Issue
Block a user