mirror of
https://github.com/PepperDash/EssentialsPluginTemplate.git
synced 2026-04-12 03:56:55 +00:00
feat: use updated string format method
This commit is contained in:
parent
4fd9dd739e
commit
45f5bfb8ef
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue