Skip to content

Commit fbd8a12

Browse files
committed
Add stuff that wasn't saved after rename for some reason...
1 parent 5f916ef commit fbd8a12

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Penumbra/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ static void HandleDeserializationError(object? sender, ErrorEventArgs errorArgs)
136136
}
137137
catch (Exception ex)
138138
{
139-
Penumbra.ChatService.NotificationMessage(ex,
139+
Penumbra.Chat.NotificationMessage(ex,
140140
"Error reading Configuration, reverting to default.\nYou may be able to restore your configuration using the rolling backups in the XIVLauncher/backups/Penumbra directory.",
141141
"Error reading Configuration", "Error", NotificationType.Error);
142142
}

Penumbra/UI/ConfigWindow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ private void DrawProblemWindow(string text)
144144

145145
ImGui.NewLine();
146146
ImGui.NewLine();
147-
CustomGui.DrawDiscordButton(Penumbra.ChatService, 0);
147+
CustomGui.DrawDiscordButton(Penumbra.Chat, 0);
148148
ImGui.SameLine();
149149
UiHelpers.DrawSupportButton(_penumbra!);
150150
ImGui.NewLine();

Penumbra/UI/ModsTab/ModFileSystemSelector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ private void DrawHelpPopup()
352352
}
353353

354354
private static void HandleException(Exception e)
355-
=> Penumbra.ChatService.NotificationMessage(e.Message, "Failure", NotificationType.Warning);
355+
=> Penumbra.Chat.NotificationMessage(e.Message, "Failure", NotificationType.Warning);
356356

357357
#endregion
358358

Penumbra/UI/UiHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public static void DrawSupportButton(Penumbra penumbra)
5959

6060
var text = penumbra.GatherSupportInformation();
6161
ImGui.SetClipboardText(text);
62-
Penumbra.ChatService.NotificationMessage($"Copied Support Info to Clipboard.", "Success", NotificationType.Success);
62+
Penumbra.Chat.NotificationMessage($"Copied Support Info to Clipboard.", "Success", NotificationType.Success);
6363
}
6464

6565
/// <summary> Draw a button to open a specific directory in a file explorer.</summary>

0 commit comments

Comments
 (0)