mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-31 06:58:30 +00:00
The Report Your Errors Update
* Add automatic error reporting with Sentry.io * Filter a bunch of bad errors from showing up on Sentry * Add module.hasModule method. * Fix deep_copy * Fix disallow mouse interaction with extensions * Add some new icons to the icon font for mod cards * Allow Ctrl-Shift-Clicking emotes. * Rarity sorting for experiments and unset display for unused experiments.
This commit is contained in:
parent
e3a7e3b64d
commit
d7a07a5612
32 changed files with 575 additions and 83 deletions
|
@ -28,6 +28,14 @@ export default class User {
|
|||
this.manager.emotes.unrefSet(set_id);
|
||||
|
||||
this.emote_sets = null;
|
||||
|
||||
const parent = this.room || this.manager;
|
||||
|
||||
if ( this._login && parent.users[this._login] === this )
|
||||
parent.users[this._login] = null;
|
||||
|
||||
if ( parent.user_ids[this._id] === this )
|
||||
parent.user_ids[this._id] = null;
|
||||
}
|
||||
|
||||
get id() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue