0xptr / Jam

// ==UserScript==
// @license      GPL-3.0-or-later; http://www.gnu.org/licenses/gpl-3.0.txt
// @name         Jam
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  changes the host to localhost
// @author       0xptr
// @match        https://www.animaljam.com/game/play
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    flashvars.smartfoxServer = '127.0.0.1';
})();