Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hguy committed Aug 20, 2023
1 parent 838115b commit c6204d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/TQVaultAE.GUI/Components/SackPanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit c6204d8

Please sign in to comment.