Skip to content

Commit

Permalink
chat: show git hash instead on login
Browse files Browse the repository at this point in the history
  • Loading branch information
goaaats committed Jul 18, 2024
1 parent 1109e64 commit 40624c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dalamud/Game/ChatHandlers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ private void PrintWelcomeMessage()

if (this.configuration.PrintDalamudWelcomeMsg)
{
chatGui.Print(string.Format(Loc.Localize("DalamudWelcome", "Dalamud vD{0} loaded."), assemblyVersion)
chatGui.Print(string.Format(Loc.Localize("DalamudWelcome", "Dalamud {0} loaded."), Util.GetGitHash())
+ string.Format(Loc.Localize("PluginsWelcome", " {0} plugin(s) loaded."), pluginManager.InstalledPlugins.Count(x => x.IsLoaded)));
}

Expand Down

0 comments on commit 40624c0

Please sign in to comment.