From de7a61e127d13f20590b0c3f701ff88eb2d04c6c Mon Sep 17 00:00:00 2001 From: Thaloria Date: Sat, 21 May 2022 23:53:20 +0200 Subject: [PATCH] added multi run and energy limits to equip --- equipment_main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/equipment_main.py b/equipment_main.py index 188b021..03a23e7 100644 --- a/equipment_main.py +++ b/equipment_main.py @@ -17,14 +17,14 @@ EMITTER_SWORD = "sword" EMITTER_STAFF = "staff" EMITTER_WAND = "wand" EMITTER_RING = "ring" -EMITTER_ALL = "all" +EMITTER_MULTI = "all" HSV_DEFAULT = HsvFilter(0, 0, 0, 179, 255, 255, 0, 0, 0, 0) def run(): - EMITTER_TO_USE = EMITTER_ALL - SPAWN_COUNT = 15 + EMITTER_TO_USE = EMITTER_MULTI + SPAWN_COUNT = 25 ENERGY_TO_USE = 3000 # initialize the user-class config = UserConfigs() @@ -50,7 +50,7 @@ def run(): masks = [] emitters = [] - if EMITTER_TO_USE == EMITTER_ALL: + if EMITTER_TO_USE == EMITTER_MULTI: emitters.append(EMITTER_RING) emitters.append(EMITTER_WAND) emitters.append(EMITTER_SWORD)