You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of my players has reported seeing this in their console during a game. I cannot repro the issue, but I can see Math.clamped in the code. Foundry v12 code claims it's been deprecated, although one wouldn't think that would result errors... in foundry-esm.js I can see:
/** * @deprecated since v12 * @ignore */functionclamped(num,min,max){constmsg="Math.clamped is deprecated in favor of Math.clamp.";foundry.utils.logCompatibilityWarning(msg,{since: 12,until: 14,once: true});returnclamp(num,min,max);}
Full stack trace of the Popout! error my player saw:
One of my players has reported seeing this in their console during a game. I cannot repro the issue, but I can see
Math.clamped
in the code. Foundry v12 code claims it's been deprecated, although one wouldn't think that would result errors... infoundry-esm.js
I can see:Full stack trace of the Popout! error my player saw:
The text was updated successfully, but these errors were encountered: