mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 17:59:48 +00:00
Take 2: Fixed resource pack matching for uppercased UUIDs
fixed the wrong damned bug...
This commit is contained in:
@ -96,7 +96,7 @@ class ResourcePackManager{
|
||||
|
||||
if($newPack instanceof ResourcePack){
|
||||
$this->resourcePacks[] = $newPack;
|
||||
$this->uuidList[$newPack->getPackId()] = $newPack;
|
||||
$this->uuidList[strtolower($newPack->getPackId())] = $newPack;
|
||||
}
|
||||
}else{
|
||||
$this->server->getLogger()->warning("Skipped resource entry $pack due to file or directory not found");
|
||||
|
Reference in New Issue
Block a user