diff --git a/sys/circuit_sys/emp.go b/sys/circuit_sys/emp.go index 2179e63..4f71283 100644 --- a/sys/circuit_sys/emp.go +++ b/sys/circuit_sys/emp.go @@ -30,7 +30,7 @@ func (emp *EmpControlSys) Update(w ecs.World) { emp3 := component.ButtonStateType.Get(s.EMP3_BTN) emp5 := component.ButtonStateType.Get(s.EMP5_BTN) empx := component.ButtonStateType.Get(s.EMPX_BTN) - xempj.Td = emp1.Jt && emp3.Jt && emp5.Jt && empx.Jt + xempj.Td = xempj.Td && (emp1.Jt && emp3.Jt && emp5.Jt && empx.Jt) } sempfab := component.ButtonStateType.Get(s.SEMPFA_BTN) @@ -42,7 +42,7 @@ func (emp *EmpControlSys) Update(w ecs.World) { emp4 := component.ButtonStateType.Get(s.EMP4_BTN) emp6 := component.ButtonStateType.Get(s.EMP6_BTN) emps := component.ButtonStateType.Get(s.EMPS_BTN) - sempj.Td = emp2.Jt && emp4.Jt && emp6.Jt && emps.Jt + sempj.Td = sempj.Td && (emp2.Jt && emp4.Jt && emp6.Jt && emps.Jt) } }) }