Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

DELETE ALL does nothing

I'm using the Pathfinder (1e) Community sheet. The trash can buttons under Attacks and Special Abilities display the warning checkbox asking if I'm sure I want to delete everything. I check it, and nothing happens. I know it's not doing anything because there's no sign of activity whatsoever, in contrast with the massive browser-wide performance drop whenever the specific sheet in question is crunching data (it's quite bloated, but the same issue happens in a near-empty sheet as well). I've tried hitting Recalc after checking the warning box, thinking it was a necessary step, but it didn't do anything. I can't see anything in the sheet that would suggest additional steps to take in order to make it work. Am I missing something obvious?
1630084735

Edited 1630084753
keithcurtis
Forum Champion
Marketplace Creator
API Scripter
Hi Mr. Man, I don't use that sheet, so I can't comment on its performance or idiosyncracies, but you'll probably have much better luck posting the feedback thread , where it will be seen by other users of the sheet, and the most importantly, the community developer. As-is, your subject line probably won't attract the eyes you need to see this. As for general performance, if there is a browser-wide performance drop regardless of sheet size, it might be due to the number of sheets in your campaign. Do you have hundreds of sheets, some with many, many spells? All of that gets loaded into the browser memory at game startup and can lead to performance degradation.
I'll be sure to ask there, thank you. In my experience so far there's only been a significant performance loss when one oversized sheet was present, I haven't had the chance to see the impact of many small ones. Come to think of it however, some time ago I started noticing abnormal CPU strain and observably increased lag across all the campaigns I play, even the ones that ran just fine until then. It happened suddenly around late July, but I have no clear idea of the cause. When I said the issue happens in a near-empty sheet as well, I was referring to the DELETE ALL button. Apologies for the confusion.
1630129921

Edited 1630130390
vÍnce
Pro
Sheet Author
Responded to the same post in the Pathfinder Community thread...&nbsp; <a href="https://app.roll20.net/forum/permalink/10341225/" rel="nofollow">https://app.roll20.net/forum/permalink/10341225/</a> The code that handles deleting all repeating rolls in a section has not changed in over 4 years... After looking into this I believe a recent change on roll20 has caused a bug that prevents an event being triggered for attributes that include the word "repeating" in them.&nbsp; Example; Using "delete_repeating_ability" no longer works. on('change:delete_repeating_ability', function(eventInfo) { console.log('~~~~| DING |~~~~: '+eventInfo.sourceAttribute); }); but changing the attribute name to "delete_rep_ability" works on('change:delete_rep_ability', function(eventInfo) { &nbsp;&nbsp;&nbsp;&nbsp;console.log('~~~~| DING |~~~~: '+eventInfo.sourceAttribute); }); Normally only names that began with "repeating" were recognized by the API as a repeating section, but it appears the API is now interpreting any use of "repeating" in an attribute's name as a repeating section.