Fixed pathetic oversight in EaglerXBungee skin DL ratelimits
This commit is contained in:
parent
8c67503984
commit
1fa34b5480
Binary file not shown.
|
@ -30,6 +30,9 @@ public class SimpleRateLimiter {
|
|||
if(decr > 0) {
|
||||
timer += decr * t;
|
||||
count -= decr;
|
||||
if(count < 0) {
|
||||
count = 0;
|
||||
}
|
||||
}
|
||||
if(count >= maxPerMinute) {
|
||||
return false;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: EaglercraftXBungee
|
||||
main: net.lax1dude.eaglercraft.v1_8.plugin.gateway_bungeecord.EaglerXBungee
|
||||
version: 1.0.2
|
||||
version: 1.0.3
|
||||
description: Plugin to allow EaglercraftX 1.8 players to join your network, or allow EaglercraftX 1.8 players to use your network as a proxy to join other networks
|
||||
author: lax1dude
|
|
@ -1 +1 @@
|
|||
1.0.2
|
||||
1.0.3
|
Loading…
Reference in New Issue
Block a user