From 43d1a5348a35ddf93f496fb0ed6510f78574b211 Mon Sep 17 00:00:00 2001 From: ceikry Date: Sat, 30 Apr 2022 22:16:53 -0500 Subject: [PATCH] Hooked up the new modular authenticator stuff --- .../main/kotlin/rs09/auth/LoginResponse.kt | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 Server/src/main/kotlin/rs09/auth/LoginResponse.kt diff --git a/Server/src/main/kotlin/rs09/auth/LoginResponse.kt b/Server/src/main/kotlin/rs09/auth/LoginResponse.kt deleted file mode 100644 index 16d8689d8..000000000 --- a/Server/src/main/kotlin/rs09/auth/LoginResponse.kt +++ /dev/null @@ -1,27 +0,0 @@ -package rs09.auth - -enum class LoginResponse { - UnexpectedError, - CouldNotAd, - Success, - InvalidCredentials, - AccountDisabled, - AlreadyOnline, - Updated, - FullWorld, - LoginServerOffline, - LoginLimitExceeded, - BadSessionID, - WeakPassword, - MembersWorld, - CouldNotLogin, - Updating, - TooManyIncorrectLogins, - StandingInMembersArea, - AccountLocked, - ClosedBeta, - InvalidLoginServer, - MovingWorld, - ErrorLoadingProfile, - BannedUser -}