mirror of
https://code.chipmunk.land/ChomeNS/chipmunkmod.git
synced 2025-11-13 22:16:14 +00:00
fix: FNF boyfriend bot hashing 1s -> 2s
This commit is contained in:
parent
fd9a0ef0cb
commit
bba4e8337f
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ public class BotValidationUtilities {
|
||||||
|
|
||||||
String[] arguments = command.split(" ");
|
String[] arguments = command.split(" ");
|
||||||
|
|
||||||
long currentTime = System.currentTimeMillis() / 1000;
|
long currentTime = System.currentTimeMillis() / 2000;
|
||||||
final String key = ChipmunkMod.CONFIG.bots.fnfboyfriend.key;
|
final String key = ChipmunkMod.CONFIG.bots.fnfboyfriend.key;
|
||||||
if (key == null) throw new RuntimeException("The key of the bot is unspecified (null), did you incorrectly add it to your config?");
|
if (key == null) throw new RuntimeException("The key of the bot is unspecified (null), did you incorrectly add it to your config?");
|
||||||
String input = currentTime + key;
|
String input = currentTime + key;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue