Skip to content

Commit

Permalink
zzre: Fix activating NPCs when deck is open
Browse files Browse the repository at this point in the history
Fixes #253
  • Loading branch information
Helco committed Oct 18, 2023
1 parent fca5f48 commit a8fa997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zzre/game/systems/ui/BaseScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public abstract partial class BaseScreen<TComponent, TMessage> : AEntitySetSyste
protected enum BlockFlags
{
None = 0,
All = DisableGameUpdate | LockPlayerControl,
All = DisableGameUpdate | LockPlayerControl | NotifyGameScreen,

DisableGameUpdate = (1 << 0),
LockPlayerControl = (1 << 1),
Expand Down

0 comments on commit a8fa997

Please sign in to comment.