adds two day ban to drop down on for issue #47

This commit is contained in:
RaidMax
2018-09-13 20:00:41 -05:00
parent 98adfb12d2
commit 7c708f06f3
3 changed files with 9 additions and 6 deletions

View File

@ -34,8 +34,9 @@ namespace WebfrontCore.Controllers
{"1", $"1 {Localization["GLOBAL_TIME_HOUR"]}" },
{"2", $"6 {Localization["GLOBAL_TIME_HOURS"]}" },
{"3", $"1 {Localization["GLOBAL_TIME_DAY"]}" },
{"4", $"1 {Localization["GLOBAL_TIME_WEEK"]}" },
{"5", $"{Localization["WEBFRONT_ACTION_SELECTION_PERMANENT"]}" },
{"4", $"2 {Localization["GLOBAL_TIME_DAYS"]}" },
{"5", $"1 {Localization["GLOBAL_TIME_WEEK"]}" },
{"6", $"{Localization["WEBFRONT_ACTION_SELECTION_PERMANENT"]}" },
}
}
},
@ -61,11 +62,14 @@ namespace WebfrontCore.Controllers
duration = "1d";
break;
case 4:
duration = "2d";
break;
case 5:
duration = "1w";
break;
}
string command = Duration == 5 ?
string command = Duration == 6 ?
$"!ban @{targetId} {Reason}" :
$"!tempban @{targetId} {duration} {Reason}";