Don't throw on ActorTable error

This commit is contained in:
goat 2019-11-08 20:50:14 +09:00
parent 799f5ef634
commit e75841deb9
4 changed files with 22 additions and 6 deletions

View file

@ -65,11 +65,17 @@ namespace Dalamud.Game {
private void ChatOnOnChatMessage(XivChatType type, uint senderId, string sender, ref string message,
ref bool isHandled) {
if (type == XivChatType.Notice && !this.hasSeenLoadingMsg) {
this.dalamud.Framework.Gui.Chat.Print("XIVLauncher in-game addon loaded.");
this.hasSeenLoadingMsg = true;
}
#if !DEBUG
if (!this.hasSeenLoadingMsg)
return;
#endif
var matched = this.rmtRegex.IsMatch(message);
if (matched) {
// This seems to be a RMT ad - let's not show it