From 9b46b7c02c383a9cefd4f0c6ca283b6a6d475adf Mon Sep 17 00:00:00 2001 From: cncfanatics Date: Wed, 20 Oct 2010 20:46:36 +0200 Subject: [PATCH] Fix right click state for modules that can't be overloaded --- service/fit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/fit.py b/service/fit.py index 74025e1f9..d2874b27b 100644 --- a/service/fit.py +++ b/service/fit.py @@ -321,7 +321,7 @@ class Fit(object): if mod.slot in (Slot.RIG, Slot.SUBSYSTEM) or mod.isEmpty: return State.ONLINE - currState = mod.state + currState = state = mod.state if proposedState is not None: state = proposedState elif click == "right":