fix: event naming style in DalamudPluginInterface.cs (closes #458)

This commit is contained in:
goat 2021-08-23 08:30:23 +02:00
parent 84f516b11e
commit b1a596a598
No known key found for this signature in database
GPG key ID: F18F057873895461
4 changed files with 14 additions and 14 deletions

View file

@ -13,7 +13,7 @@ namespace Dalamud.Test
{
var workingDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
this.localization = new Localization(workingDir, "dalamud_");
this.localization.OnLocalizationChanged += code => this.currentLangCode = code;
this.localization.LocalizationChanged += code => this.currentLangCode = code;
}
[Fact]