1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-12 14:08:30 +00:00

3.5.176. Ban reason stuff. :D

This commit is contained in:
SirStendec 2016-05-13 23:56:59 -04:00
parent fbb12d726a
commit 6cf5ddc734
6 changed files with 194 additions and 38 deletions

View file

@ -37,7 +37,7 @@ FFZ.msg_commands = {};
// Version
var VER = FFZ.version_info = {
major: 3, minor: 5, revision: 174,
major: 3, minor: 5, revision: 176,
toString: function() {
return [VER.major, VER.minor, VER.revision].join(".") + (VER.extra || "");
}
@ -112,8 +112,8 @@ FFZ.prototype._pastebin = function(data, callback) {
// User Data
// -------------------
FFZ.prototype.get_user = function() {
if ( this.__user )
FFZ.prototype.get_user = function(force_reload) {
if ( ! force_reload && this.__user )
return this.__user;
var LC = FFZ.utils.ember_lookup('controller:login'),