Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Assets/Scripts/Game/Guilds/DarkBrotherhood.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// License: MIT License (http://www.opensource.org/licenses/mit-license.php)
// Source Code: https://github.com/Interkarma/daggerfall-unity
// Original Author: Hazelnut
// Contributors:
// Contributors:

using System.Collections.Generic;
using DaggerfallConnect;
Expand Down Expand Up @@ -287,7 +287,7 @@ public DarkBrotherhoodMacroDataSource(DarkBrotherhood guild) : base(guild)

public override string Dungeon()
{
return parent.revealedDungeon.Name;
return TextManager.Instance.GetLocalizedLocationName(parent.revealedDungeon.MapTableData.MapId, parent.revealedDungeon.Name);
}
}

Expand Down
6 changes: 3 additions & 3 deletions Assets/Scripts/Game/Guilds/ThievesGuild.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// License: MIT License (http://www.opensource.org/licenses/mit-license.php)
// Source Code: https://github.com/Interkarma/daggerfall-unity
// Original Author: Hazelnut
// Contributors:
// Contributors:

using System.Collections.Generic;
using DaggerfallConnect;
Expand Down Expand Up @@ -172,7 +172,7 @@ override public void Join()
RevealGuildHallOnMap();
}

override public void Leave()
override public void Leave()
{
UnregisterEvents();
}
Expand Down Expand Up @@ -278,7 +278,7 @@ public ThievesGuildMacroDataSource(ThievesGuild guild) : base(guild)

public override string Dungeon()
{
return parent.revealedDungeon.Name;
return TextManager.Instance.GetLocalizedLocationName(parent.revealedDungeon.MapTableData.MapId, parent.revealedDungeon.Name);
}
}

Expand Down