Skip to content

Commit

Permalink
fix: use effective version in welcome message (goatcorp#1462)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aireil authored Oct 4, 2023
1 parent 12354cd commit 1d015c2
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 @@ -239,7 +239,7 @@ private void PrintWelcomeMessage()
{
foreach (var plugin in pluginManager.InstalledPlugins.OrderBy(plugin => plugin.Name).Where(x => x.IsLoaded))
{
chatGui.Print(string.Format(Loc.Localize("DalamudPluginLoaded", " 》 {0} v{1} loaded."), plugin.Name, plugin.Manifest.AssemblyVersion));
chatGui.Print(string.Format(Loc.Localize("DalamudPluginLoaded", " 》 {0} v{1} loaded."), plugin.Name, plugin.EffectiveVersion));
}
}

Expand Down

0 comments on commit 1d015c2

Please sign in to comment.