VladYvhuce
Member
I fixed it.
Now it reads:
I'm sure there's a more elegant way to fix the situation, but I'm happy with the way it's working for me so far.
Now it reads:
Code:
if (my_familiar().drops_today >= my_familiar().drops_limit) {
foreach f in $familiars[fist turkey, adventurous spelunker, machine elf, astral badger, unconscious collective, baby sandworm, rogue program, green pixie, li'l xenomorph] {
if (have_familiar(f) && f.drops_limit != 0 && f.drops_today < f.drops_limit) {
use_familiar(f); }
if (my_familiar().drops_today == my_familiar().drops_limit) {
foreach f in $familiars[intergnat] {
use_familiar (f); }
}
}
}