Take 2: Fixed resource pack matching for uppercased UUIDs

fixed the wrong damned bug...
This commit is contained in:
Dylan K. Taylor 2017-11-21 11:25:21 +00:00
parent 46afb7caf1
commit 78d24b9183

View File

@ -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");