Refactor convertBotDifficultyDropdownToBotDifficulty() ot use switch statement

This commit is contained in:
Dev 2023-05-18 17:23:28 +01:00
parent 90d8b52a41
commit f3b28d532c

View File

@ -98,18 +98,16 @@ export class BotDifficultyHelper
*/
public convertBotDifficultyDropdownToBotDifficulty(dropDownDifficulty: string): string
{
if (dropDownDifficulty.toLowerCase() === "medium")
switch (dropDownDifficulty.toLowerCase())
{
case "medium":
return "normal";
}
if (dropDownDifficulty.toLowerCase() === "random")
{
case "random":
return this.chooseRandomDifficulty();
}
default:
return dropDownDifficulty.toLowerCase();
}
}
/**
* Choose a random difficulty from - easy/normal/hard/impossible