Anguta, Ceryshen, the Anguta Watchower, and Anguta's two bunkers have had their amenities wired together, excluding the door locks being connected to doors. Modified how things like spectator status, fly status and speed persist.

This commit is contained in:
FateJH 2018-03-10 21:18:27 -05:00
parent bd76d28564
commit 001f9a40e9
13 changed files with 490 additions and 175 deletions

View file

@ -247,13 +247,4 @@ class PlayerTest extends Specification {
Player.Administrate(obj, false)
obj.Admin mustEqual false
}
"spectate" in {
val obj = new Player("Chord", PlanetSideEmpire.TR, CharacterGender.Male, 0, 5)
obj.Spectator mustEqual false
Player.Spectate(obj, true)
obj.Spectator mustEqual true
Player.Spectate(obj, false)
obj.Spectator mustEqual false
}
}