mirror of
https://github.com/psforever/PSF-LoginServer.git
synced 2026-01-19 18:44:45 +00:00
tweaks for 'gender -> sex' change
This commit is contained in:
parent
9798e27d29
commit
2fbe926725
|
|
@ -306,7 +306,7 @@ class AvatarActor(
|
|||
_.factionId -> lift(empire.id),
|
||||
_.headId -> lift(head),
|
||||
_.voiceId -> lift(voice.id),
|
||||
_.genderId -> lift(gender.id),
|
||||
_.genderId -> lift(gender.value),
|
||||
_.bep -> lift(Config.app.game.newAvatar.br.experience),
|
||||
_.cep -> lift(Config.app.game.newAvatar.cr.experience)
|
||||
)
|
||||
|
|
|
|||
|
|
@ -8593,7 +8593,7 @@ class SessionActor(middlewareActor: typed.ActorRef[MiddlewareActor.Command], con
|
|||
* @return a tuple composed of an `ActorRef` destination and a message to send to that destination
|
||||
*/
|
||||
def LoadZoneInVehicleAsPassenger(vehicle: Vehicle, zoneId: String): Unit = {
|
||||
val msg: String = s"${player.Name} loading into $zoneId as the passenger of a ${vehicle.Definition.Name}\""
|
||||
val msg: String = s"${player.Name} loading into $zoneId as the passenger of a ${vehicle.Definition.Name}"
|
||||
log.info(msg)
|
||||
log.debug(s"LoadZoneInVehicleAsPassenger: $msg")
|
||||
if (!zoneReload && zoneId == continent.id) {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ case class Avatar(
|
|||
id,
|
||||
name,
|
||||
PlanetSideEmpire(factionId),
|
||||
CharacterSex(genderId),
|
||||
CharacterSex.valuesToEntriesMap(genderId),
|
||||
headId,
|
||||
CharacterVoice(voiceId),
|
||||
bep,
|
||||
|
|
|
|||
Loading…
Reference in a new issue