Skip to content

Commit

Permalink
Force lowercase in argument input
Browse files Browse the repository at this point in the history
  • Loading branch information
Zanieon committed Jan 25, 2024
1 parent fba9f1a commit 30b91f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ bool function ClientCommand_ResetTitanAegis( entity player, array<string> args )
if ( !args.len() )
return false

string titanRef = args[0]
string titanRef = args[0].tolower()
if( !PersistenceEnumValueIsValid( "titanClasses", titanRef ) )
return false

Expand Down

0 comments on commit 30b91f9

Please sign in to comment.