View Single Post
11-21-21, 07:28 PM   #2
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,878
Somewhere, adding the extra lines has created a recursive call that gets back to RepByZone:SwitchedZones()

Simple check, change:
Code:
function RepByZone:SwitchedZones()
to:
Code:
local count = 0
function RepByZone:SwitchedZones()
count = count + 1
print("count", count)
And see how many times you end up in the same place before it errors.
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 11-21-21 at 10:20 PM.
  Reply With Quote