Skip to content

Commit

Permalink
1.0.8: auth default disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
benfiratkaya committed Apr 23, 2024
1 parent 166195a commit e4bb2fb
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static class Auth extends OkaeriConfig {
/**
* Status of Auth mode
*/
private boolean status = true;
private boolean status = false;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* @since 1.0
*/
@RequiredArgsConstructor
@Command(value = "auth", alias = {"authy", "kayit", "site", "web"})
@Command(value = "auth")
public class AuthCommand extends BaseCommand {

/**
Expand Down
2 changes: 1 addition & 1 deletion bukkit/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: LeaderOS
authors: [leaderos, geik]
authors: [leaderos]
main: net.leaderos.plugin.Bukkit
version: '${shared.version}'
api-version: 1.13
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static class Auth extends OkaeriConfig {
/**
* Status of Auth mode
*/
private boolean status = true;
private boolean status = false;
}

/**
Expand Down Expand Up @@ -75,7 +75,7 @@ public static class Credit extends OkaeriConfig {
/**
* Status of Cache mode
*/
private boolean status = true;
private boolean status = false;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion bungee/src/main/resources/bungee.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: LeaderOS
main: net.leaderos.bungee.Bungee
version: '${shared.version}'
author: leaderos, geik
author: leaderos
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static class Auth extends OkaeriConfig {
/**
* Status of Auth mode
*/
private boolean status = true;
private boolean status = false;
}

/**
Expand Down Expand Up @@ -75,7 +75,7 @@ public static class Credit extends OkaeriConfig {
/**
* Status of Cache mode
*/
private boolean status = true;
private boolean status = false;
}

/**
Expand Down

0 comments on commit e4bb2fb

Please sign in to comment.