The chat message prints out "You must wait 0 to use this command again!" however it should be printing out "you must wait 1700 to use this command again" but its not It works when i print it to console using Console.WriteLine however it doesn't work in game with player.ChatMessage as the placeholder mustnt be working and im not sure why
//Lang File
["CommandCooldown"] = "You must wait <color=red>{0}</color> to use this command again!",
//Main Code
var time = configData.defcooldown - seconds;
player.ChatMessage(Lang("CommandCooldown", player.UserIDString, time));
//This returns in chat "You must wait 0 to use this command again!"
//How ever if I do this
Console.WriteLine($"{time} remaining");
//It will work and send the actual time in the console