Disable predict movement

Disables Diep.io's laggy predict movement feature.

// ==UserScript==
// @name         Disable predict movement
// @namespace    https://diep.io
// @version      1.0
// @description  Disables Diep.io's laggy predict movement feature.
// @author       Binary
// @match        https://diep.io/*
// @grant        unsafeWindow
// ==/UserScript==

(function() {
    var interval = setInterval(function(){
        if(unsafeWindow.input){
            unsafeWindow.input.set_convar('net_predict_movement', false);
            clearInterval(interval);
        }
    }, 100);
})();