mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
Small fix for belly autotransfer caps
Fixes 1-capped setting breaking the thing.
This commit is contained in:
@@ -35,7 +35,7 @@
|
|||||||
continue
|
continue
|
||||||
tally++
|
tally++
|
||||||
M.belly_cycles++
|
M.belly_cycles++
|
||||||
if(autotransfer_max_amount > 0 && tally >= autotransfer_max_amount)
|
if(autotransfer_max_amount > 1 && tally >= autotransfer_max_amount)
|
||||||
continue
|
continue
|
||||||
if(M.belly_cycles >= autotransferwait / 60)
|
if(M.belly_cycles >= autotransferwait / 60)
|
||||||
check_autotransfer(M, autotransferlocation)
|
check_autotransfer(M, autotransferlocation)
|
||||||
|
|||||||
Reference in New Issue
Block a user