Chat: Fix syntax error

This commit is contained in:
rubenwardy 2022-06-18 21:23:35 +01:00
parent 14a356ded1
commit 4506a8c3da
2 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ elseif cmd == "max_users" then
if team_name and max_users then
return true, "Set max users of team " .. team_name .. " to " .. max_users
else
return false, "Usage: /team max_users <team_name> <number>`
return false, "Usage: /team max_users <team_name> <number>"
end
else
return false, "Command needed"

View File

@ -107,7 +107,7 @@ elseif cmd == "max_users" then
if team_name and max_users then
return true, "Set max users of team " .. team_name .. " to " .. max_users
else
return false, "Usage: /team max_users <team_name> <number>`
return false, "Usage: /team max_users <team_name> <number>"
end
else
return false, "Command needed"