Bump and lock PSCrypto version to 1.1

This commit is contained in:
Chord 2016-07-29 22:36:50 -04:00
parent 261d665195
commit 004f36219b
3 changed files with 40 additions and 12 deletions

View file

@ -123,8 +123,14 @@ object PsLogin {
}
catch {
case e : UnsatisfiedLinkError =>
logger.error(e)("Unable to initialize " + CryptoInterface.libName)
CryptoInterface.printEnvironment()
logger.error("Unable to initialize " + CryptoInterface.libName)
logger.error(e)("This means that your PSCrypto version is out of date. Get the latest version from the README" +
" https://github.com/psforever/PSF-LoginServer#downloading-pscrypto")
sys.exit(1)
case e : IllegalArgumentException =>
logger.error("Unable to initialize " + CryptoInterface.libName)
logger.error(e)("This means that your PSCrypto version is out of date. Get the latest version from the README" +
" https://github.com/psforever/PSF-LoginServer#downloading-pscrypto")
sys.exit(1)
}