forked from sorceress/EasyAuth
20w15a + bug fix
This commit is contained in:
parent
a92b25e2ec
commit
2430d220d1
|
@ -18,7 +18,7 @@ Requires Fabric API.
|
||||||
## License
|
## License
|
||||||
Libraries that the project is using:
|
Libraries that the project is using:
|
||||||
- `Argon2 (LGPLv3)` https://github.com/phxql/argon2-jvm
|
- `Argon2 (LGPLv3)` https://github.com/phxql/argon2-jvm
|
||||||
- `JDBC (Apache 2)` https://github.com/polyjdbc/polyjdbc
|
- `JDBC (Apache 2)` https://github.com/xerial/sqlite-jdbc
|
||||||
- `JNA (Apache 2 || LGPLv3)` https://github.com/java-native-access/jna
|
- `JNA (Apache 2 || LGPLv3)` https://github.com/java-native-access/jna
|
||||||
|
|
||||||
This project is licensed under the `MIT` license.
|
This project is licensed under the `MIT` license.
|
||||||
|
|
|
@ -27,8 +27,8 @@ dependencies {
|
||||||
include 'de.mkammerer:argon2-jvm:2.6'
|
include 'de.mkammerer:argon2-jvm:2.6'
|
||||||
|
|
||||||
// JDBC SQLite Driver
|
// JDBC SQLite Driver
|
||||||
implementation group: 'org.polyjdbc', name: 'polyjdbc', version: '0.7.6'
|
implementation group:'org.xerial', name:'sqlite-jdbc', version:'3.8.11.2'
|
||||||
include group: 'org.polyjdbc', name: 'polyjdbc', version: '0.7.6'
|
include group:'org.xerial', name:'sqlite-jdbc', version:'3.8.11.2'
|
||||||
|
|
||||||
// JNA lib
|
// JNA lib
|
||||||
include 'net.java.dev.jna:jna:5.5.0'
|
include 'net.java.dev.jna:jna:5.5.0'
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
org.gradle.jvmargs=-Xmx1G
|
org.gradle.jvmargs=-Xmx1G
|
||||||
|
|
||||||
# Fabric properties
|
# Fabric properties
|
||||||
minecraft_version=20w14a
|
minecraft_version=20w15a
|
||||||
yarn_mappings=20w14a+build.9
|
yarn_mappings=20w15a+build.1
|
||||||
loader_version=0.7.10+build.191
|
loader_version=0.8.2+build.194
|
||||||
|
|
||||||
#Fabric api
|
#Fabric api
|
||||||
fabric_version=0.5.8+build.316-1.16
|
fabric_version=0.5.9+build.319-1.16
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version = 1.3.2
|
mod_version = 1.3.2
|
||||||
|
|
|
@ -100,7 +100,7 @@ public class AuthCommand {
|
||||||
if(sender != null)
|
if(sender != null)
|
||||||
sender.sendMessage(globalPasswordSet);
|
sender.sendMessage(globalPasswordSet);
|
||||||
else
|
else
|
||||||
LOGGER.info(globalPasswordSet);
|
LOGGER.info(SimpleAuth.config.lang.globalPasswordSet);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue