We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b89e1e6 commit f35e00dCopy full SHA for f35e00d
internal/app/engine/proposals.go
@@ -24,6 +24,11 @@ func (e *Engine) EnqueueGameEvent(gameEvent *state.GameEvent) {
24
autoRefBehavior = AutoRefConfig_BEHAVIOR_ACCEPT
25
}
26
27
+ if e.currentState.Stage.IsPreStage() || e.currentState.Stage.IsPausedStage() {
28
+ log.Printf("Ignoring game event in paused or pre stage")
29
+ autoRefBehavior = AutoRefConfig_BEHAVIOR_IGNORE
30
+ }
31
+
32
switch autoRefBehavior {
33
case AutoRefConfig_BEHAVIOR_IGNORE:
34
log.Printf("Ignoring game event from autoRef: %v", gameEvent)
0 commit comments