Skip to content

Commit

Permalink
or
Browse files Browse the repository at this point in the history
  • Loading branch information
Furrior committed Jan 1, 2025
1 parent d3c84a6 commit a6c86b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modular_bandastation/metaserver/code/admin.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ADMIN_VERB(wl_ban, R_BAN, "WL Ban", "Ban a player from the whitelist.", ADMIN_CA
if(!input)
return
var/duration_days = input(user, "Please specify the duration of the ban in days.", "Duration", "") as num|null
if(!duration_days or duration_days < 0)
if(!duration_days || duration_days < 0)
return

var/reason = input(user, "Please specify the reason for the ban.", "Reason", "") as text|null
Expand Down

0 comments on commit a6c86b4

Please sign in to comment.