Hello, I'm working on a sheet that has a repeating section for powers. One of the properties powers can have is "maintain", which essentially means they're a toggle - when you activate them, you lose some mana from your max, and when you de-activate them, you regain that mana. I have a hidden field, MaintainActive, that's either a 0 (power is currently not active) or a 1 (power is currently active). The default value, of course, is 0. The issue is that Roll20 doesn't like fields that are set to their default value. They recommend using getAttrByName for these situations, which works, but doesn't let you actually change the object (so I can change the 0 to a 1 when players turn on powers for the first time). I've tried some hacks like checking if a find returns undefined, then creating an object for it, but that just seems to confuse the field system. I'm sure there's a simple way to get a field with a default value -> set a new value for that field, creating a proper object, but I can't figure it out! Any help would be greatly appreciated.