Strict CLI

This commit is contained in:
Konloch 2024-10-02 08:58:56 -06:00
parent ba0411cf98
commit a5f0aed8e5

AI 샘플 코드 생성 중입니다

Loading...

View File

@ -157,8 +157,7 @@ public class BCVCommandLine
public CLICommand getCommand(String name)
{
for(CLICommand command : COMMANDS)
if(command.name.equals(name)
|| command.nameFormatted.equals(name))
if(command.nameFormatted.equals(name))
return command;
return null;