From 3ccd93aaf15b5206b39bc0a2dca5c0f8759272cd Mon Sep 17 00:00:00 2001 From: Haselnussbomber Date: Tue, 17 Dec 2024 16:56:55 +0100 Subject: [PATCH] Return nullable on XivChatType.GetDetails (#2143) --- Dalamud/Game/Text/XivChatTypeExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Game/Text/XivChatTypeExtensions.cs b/Dalamud/Game/Text/XivChatTypeExtensions.cs index 3bdeb1525..457d3b145 100644 --- a/Dalamud/Game/Text/XivChatTypeExtensions.cs +++ b/Dalamud/Game/Text/XivChatTypeExtensions.cs @@ -12,7 +12,7 @@ public static class XivChatTypeExtensions /// /// The chat type. /// The info attribute. - public static XivChatTypeInfoAttribute GetDetails(this XivChatType chatType) + public static XivChatTypeInfoAttribute? GetDetails(this XivChatType chatType) { return chatType.GetAttribute(); }