Possible to remove [prefix]?Solved
Hi, I'm trying to remove the brackets from

public void Chat(BasePlayer player, string str, bool prefix = true) => SendReply(player, (prefix != false ? $"{_config.Settings["Prefix"]} " : string.Empty) + str);

But keep getting errors, When I try to remove the [] around "prefix" eg, plugin name. I want all messages on my server to be consistent. This is the only one with brackets around the name.

Thank you
The prefix is set in the configuration file, don't modify that line in the plugin. ["Prefix"] is no the actual prefix, that is getting the prefix from the configuration file.
Locked automatically