1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-04 00:48:32 +00:00

3.5.188. Continued bug fixing for Ember internals restructuring. Fixed enhanced following control again. Fixed a bug re-inserting deleted message history into chat.

This commit is contained in:
SirStendec 2016-05-25 01:06:27 -04:00
parent 574d627f79
commit 2cb07d6c78
9 changed files with 45 additions and 28 deletions

View file

@ -907,13 +907,13 @@ FFZ.prototype._modify_chat_subline = function(component) {
return;
} else if ( cl.contains('ban') )
this.sendAction("banUser", from);
this.sendAction("banUser", {user:from});
else if ( cl.contains('unban') )
this.sendAction("unbanUser", from);
this.sendAction("unbanUser", {user:from});
else if ( cl.contains('timeout') )
this.sendAction("timeoutUser", from);
this.sendAction("timeoutUser", {user:from});
} else if ( cl.contains('badge') ) {
if ( cl.contains('turbo') )