mirror of
https://github.com/psforever/PSF-LoginServer.git
synced 2026-07-16 08:55:18 +00:00
fixing configuration file and warnings
This commit is contained in:
parent
61a75f13cd
commit
39d3693b8b
3 changed files with 6 additions and 1 deletions
|
|
@ -1063,6 +1063,9 @@ class AvatarActor(
|
|||
} else {
|
||||
performAvatarLogin(avatarId, account.id, replyTo)
|
||||
}
|
||||
case Success(_) =>
|
||||
//TODO this may not be an actual failure, but don't know what to do
|
||||
sessionActor ! SessionActor.SendResponse(ActionResultMessage.Fail(error = 6))
|
||||
case Failure(e) =>
|
||||
log.error(e)("db failure")
|
||||
sessionActor ! SessionActor.SendResponse(ActionResultMessage.Fail(error = 6))
|
||||
|
|
|
|||
|
|
@ -290,6 +290,8 @@ class InterstellarClusterService(context: ActorContext[InterstellarClusterServic
|
|||
cavernRotation.foreach {
|
||||
rotation => rotation ! rotationMsg
|
||||
}
|
||||
|
||||
case _ => ()
|
||||
}
|
||||
this
|
||||
}
|
||||
|
|
|
|||
|
|
@ -158,7 +158,7 @@ case class GameConfig(
|
|||
warpGates: WarpGateConfig,
|
||||
cavernRotation: CavernRotationConfig,
|
||||
savedMsg: SavedMessageEvents,
|
||||
playerDraw: PlayerStateDrawSettings
|
||||
playerDraw: PlayerStateDrawSettings,
|
||||
doorsCanBeOpenedByMedAppFromThisDistance: Float
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue