Uncaps the FPS limit (turns off V-sync)
// ==UserScript==
// @name Uncap FPS for Suroi
// @namespace http://tampermonkey.net/
// @version 1
// @description Uncaps the FPS limit (turns off V-sync)
// @author Blubbled
// @match https://suroi.io/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function uncapFPS() {
window.requestAnimationFrame = function(callback) {
return setTimeout(callback, 1);
};
}
uncapFPS();
})();