Archiviert
13
0

Don't poll the current time more than once a second for updates.

Dieser Commit ist enthalten in:
Kristian S. Stangeland 2014-03-27 20:59:17 +01:00
Ursprung 3257d6069a
Commit 3b26940385

Datei anzeigen

@ -547,7 +547,7 @@ public class ProtocolLibrary extends JavaPlugin {
updateConfiguration(); updateConfiguration();
// Check for updates too // Check for updates too
if (!UPDATES_DISABLED) { if (!UPDATES_DISABLED && (tickCounter % 20) == 0) {
checkUpdates(); checkUpdates();
} }
} }