diff --git a/src/TQVaultAE.GUI/Components/SackPanel.cs b/src/TQVaultAE.GUI/Components/SackPanel.cs index aae3c8b3..d9a35682 100644 --- a/src/TQVaultAE.GUI/Components/SackPanel.cs +++ b/src/TQVaultAE.GUI/Components/SackPanel.cs @@ -2500,7 +2500,8 @@ protected virtual bool IsCurrentPlayerReadOnly() protected virtual bool IsSuitableForCurrentPlayer(Item item) { var currPlayer = this.userContext.CurrentPlayer; - if (!(currPlayer?.IsImmortalThrone ?? false) // Player is TQ Original + + if (currPlayer is not null && !currPlayer.IsImmortalThrone // Player is TQ Original && item.GameDlc != GameDlc.TitanQuest // Non base game item ) return false;