Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetHandler()

static ITagHandler Terraria.UI.Chat.ChatManager.GetHandler ( string tagName)
inlinestaticprivate

Definition at line 62 of file ChatManager.cs.

63 {
64 string key = tagName.ToLower();
65 if (_handlers.ContainsKey(key))
66 {
67 return _handlers[key];
68 }
69 return null;
70 }
static ConcurrentDictionary< string, ITagHandler > _handlers

References Terraria.UI.Chat.ChatManager._handlers, and System.key.

Referenced by Terraria.UI.Chat.ChatManager.ParseMessage().