From ab0d56a552544e2a43ad4c58748009f9f4c5a7e8 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sat, 11 Apr 2026 14:17:47 +0200 Subject: [PATCH] fuck again --- modules/active_modifier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/active_modifier.py b/modules/active_modifier.py index a0cbd56..a3329b5 100644 --- a/modules/active_modifier.py +++ b/modules/active_modifier.py @@ -167,7 +167,7 @@ class Module(ActiveModifier): elif data.get("action") == "skipc": if (count := data.get("set", -1)) > -1: self.skip_next = count if (count2 := data.get("add", -1)) > -1: self.skip_next += count2 - if (count3 := data.get("remove", 1)) < -1: self.skip_next += count3 + if (count3 := data.get("remove", 1)) < 0: self.skip_next += count3 return {"status": "ok", "data": self.skip_next} activemod = Module()