v1.0.8.10: Hotbar crash fix when dragging inventory items; Release builds strip PDBs

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-10 21:24:16 -05:00
parent ccee580789
commit 2ac48bbd81
7 changed files with 25 additions and 28 deletions
-17
View File
@@ -128,23 +128,6 @@ namespace HSUI.Interface.Nameplates
return _playerHud;
}
// In PvP, optionally show only enemy player nameplates (hide allies)
if (Config.PvPShowOnlyEnemyPlayers && Plugin.ClientState.IsPvP)
{
if (data.GameObject is ICharacter character)
{
if ((character.StatusFlags & StatusFlags.PartyMember) != 0 ||
(character.StatusFlags & StatusFlags.AllianceMember) != 0 ||
(character.StatusFlags & StatusFlags.Friend) != 0)
{
return null; // Hide party, alliance, and friend nameplates
}
}
// Other players: show only hostile (enemy team), hide allies
if (data.GameObject == null) { return null; }
return Utils.IsHostile(data.GameObject) ? _enemyHud : null;
}
if (data.GameObject is ICharacter character2)
{
if ((character2.StatusFlags & StatusFlags.PartyMember) != 0) // PartyMember