diff --git a/Dalamud/Game/Internal/Gui/Structs/PartyFinder.cs b/Dalamud/Game/Internal/Gui/Structs/PartyFinder.cs index cd8f133e6..91de07913 100755 --- a/Dalamud/Game/Internal/Gui/Structs/PartyFinder.cs +++ b/Dalamud/Game/Internal/Gui/Structs/PartyFinder.cs @@ -256,8 +256,8 @@ namespace Dalamud.Game.Internal.Gui.Structs { this.jobsPresent = listing.jobsPresent; Id = listing.id; - Name = seStringManager.Parse(listing.name); - Description = seStringManager.Parse(listing.description); + Name = seStringManager.Parse(listing.name.TakeWhile(b => b != 0).ToArray()); + Description = seStringManager.Parse(listing.description.TakeWhile(b => b != 0).ToArray()); World = new Lazy(() => dataManager.GetExcelSheet().GetRow(listing.world)); HomeWorld = new Lazy(() => dataManager.GetExcelSheet().GetRow(listing.homeWorld)); CurrentWorld = new Lazy(() => dataManager.GetExcelSheet().GetRow(listing.currentWorld));