feat: use updated string format method

This commit is contained in:
Aviv Cohn
2024-10-10 16:34:13 -04:00
parent 4fd9dd739e
commit 45f5bfb8ef

View File

@@ -199,7 +199,7 @@ namespace EssentialsPluginTemplate
{
if (string.IsNullOrEmpty(text)) return;
_comms.SendText(string.Format("{0}{1}", text, CommsDelimiter));
_comms.SendText($"{text}{CommsDelimiter}");
}
// TODO [ ] If not using an HEX/byte based API, delete the properties below