mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
fix(seeding): make skin cost check case-insensitive
This commit is contained in:
@@ -31,7 +31,7 @@ class ChampionSkinSeeder extends Seeder
|
||||
continue;
|
||||
}
|
||||
|
||||
if (in_array($skin['cost'], ['Special', 'Battle Pass', 'Sanctum'])) {
|
||||
if (in_array(strtolower($skin['cost']), ['special', 'battle pass', 'sanctum'])) {
|
||||
$skin['cost'] = 99999;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user