Minor fixes

This commit is contained in:
stacey 2021-05-12 15:48:38 -04:00 committed by GitHub
parent 0d686ea80f
commit 0eadfaba52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5961,11 +5961,11 @@ namespace TShockAPI
{ {
if (args.Parameters.Count < 1 || args.Parameters.Count > 2) if (args.Parameters.Count < 1 || args.Parameters.Count > 2)
{ {
args.Player.SendErrorMessage("Invalid syntax! Proper syntax: {0}buff <buff id/name> [time(seconds)]", Specifier); args.Player.SendErrorMessage("Invalid syntax! Proper syntax: {0}buff <buff name or ID> [time in seconds]", Specifier);
return; return;
} }
int id = 0; int id = 0;
int time = 60; int time = 35791393;
if (!int.TryParse(args.Parameters[0], out id)) if (!int.TryParse(args.Parameters[0], out id))
{ {
var found = TShock.Utils.GetBuffByName(args.Parameters[0]); var found = TShock.Utils.GetBuffByName(args.Parameters[0]);