level: Remove UberZone from visibleZoneIds
There's another interest will contain objects from UberZone throughout the entire gameplay, so this is pointless and unnecessary.
This commit is contained in:
parent
e5d8290317
commit
5feda0df4f
1 changed files with 1 additions and 1 deletions
|
@ -440,7 +440,7 @@ class DistributedLevel(DistributedObject.DistributedObject, Level.Level):
|
|||
vizList = list(self.zoneNums)
|
||||
vizList.remove(LevelConstants.UberZoneEntId)
|
||||
uberZone = self.getZoneId(LevelConstants.UberZoneEntId)
|
||||
visibleZoneIds = [OTPGlobals.UberZone, self.levelZone, uberZone]
|
||||
visibleZoneIds = [self.levelZone, uberZone]
|
||||
for vz in vizList:
|
||||
if vz is not LevelConstants.UberZoneEntId:
|
||||
visibleZoneIds.append(self.getZoneId(vz))
|
||||
|
|
Loading…
Reference in a new issue