diff --git a/src/simonsays_drgreengiant/phasmoactions.py b/src/simonsays_drgreengiant/phasmoactions.py index 3d409db..f4d8ce6 100644 --- a/src/simonsays_drgreengiant/phasmoactions.py +++ b/src/simonsays_drgreengiant/phasmoactions.py @@ -895,7 +895,8 @@ def run(self, *, force: bool = False) -> errorcodes.ErrorSet: look = hidactions.MoveMouseRelativeDirectionSmooth(cfg) lookfar = actions.ActionRepeat(look, actionconfig.repeats) - dropaction = Drop(self.config_fn) + dropconfig = Drop(self.config_fn).config.hidconfig + dropaction = hidactions.PressReleaseKeyOrButton(dropconfig, delay=0.01) switchaction = Switch(self.config_fn) lookanddrop = actions.ActionSequence([lookfar, dropaction, switchaction])