mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-09 20:21:02 +01:00
Sometimes I'm sleeping
This commit is contained in:
parent
91d95e45fa
commit
cf8d179eab
@ -426,7 +426,7 @@ public class FlatFile implements DataSource {
|
||||
if (args[0].equalsIgnoreCase(user)) {
|
||||
switch (args.length) {
|
||||
case 2:
|
||||
return new PlayerAuth(args[0], args[1], "198.168.0.1", 0, "your@email.com");
|
||||
return new PlayerAuth(args[0], args[1], "192.168.0.1", 0, "your@email.com");
|
||||
case 3:
|
||||
return new PlayerAuth(args[0], args[1], args[2], 0, "your@email.com");
|
||||
case 4:
|
||||
@ -708,7 +708,7 @@ public class FlatFile implements DataSource {
|
||||
String[] args = line.split(":");
|
||||
switch (args.length) {
|
||||
case 2:
|
||||
auths.add(new PlayerAuth(args[0], args[1], "198.168.0.1", 0, "your@email.com"));
|
||||
auths.add(new PlayerAuth(args[0], args[1], "192.168.0.1", 0, "your@email.com"));
|
||||
case 3:
|
||||
auths.add(new PlayerAuth(args[0], args[1], args[2], 0, "your@email.com"));
|
||||
case 4:
|
||||
|
Loading…
Reference in New Issue
Block a user