same for csr

This commit is contained in:
ScrawnyRonnie 2025-12-06 16:47:46 -05:00
parent c4d164e3fb
commit fa9dc8e8f0

View file

@ -524,6 +524,10 @@ class GeneralLogic(val ops: GeneralOperations, implicit val context: ActorContex
if (avatar.lookingForSquad) {
avatarActor ! AvatarActor.SetLookingForSquad(false)
}
case GenericAction.MaxEnableAutoRun =>
player.maxAutoRunEnabled = true
case GenericAction.MaxDisableAutoRun =>
player.maxAutoRunEnabled = false
case _ =>
log.warn(s"GenericActionMessage: ${player.Name} can't handle $action")
}