mirror of
https://github.com/radio95-rnt/RadioPlayer.git
synced 2026-07-29 15:29:14 +02:00
fuck again
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user