File tree Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package engine
2
2
3
3
import (
4
4
"github.com/RoboCup-SSL/ssl-game-controller/internal/app/geom"
5
- "github.com/RoboCup-SSL/ssl-game-controller/internal/app/state"
6
5
"github.com/RoboCup-SSL/ssl-game-controller/internal/app/statemachine"
7
6
"log"
8
7
)
@@ -20,25 +19,6 @@ func (e *Engine) processRunningToStop() {
20
19
StartBallPlacement : & statemachine.StartBallPlacement {},
21
20
},
22
21
})
23
- } else {
24
- log .Printf ("Ball is already placed, no need for ball placement" )
25
- if e .currentState .GetAutoContinue () {
26
- e .Enqueue (& statemachine.Change {
27
- Origin : & changeOriginEngine ,
28
- Change : & statemachine.Change_Continue {
29
- Continue : & statemachine.Continue {},
30
- },
31
- })
32
- } else {
33
- e .Enqueue (& statemachine.Change {
34
- Origin : & changeOriginEngine ,
35
- Change : & statemachine.Change_NewCommand {
36
- NewCommand : & statemachine.NewCommand {
37
- Command : state .NewCommandNeutral (state .Command_STOP ),
38
- },
39
- },
40
- })
41
- }
42
22
}
43
23
}
44
24
You can’t perform that action at this time.
0 commit comments