coghq: y tho

This commit is contained in:
John Cote 2019-12-30 21:38:26 -05:00
parent b478f2a1ba
commit 945aec0187

View file

@ -89,7 +89,8 @@ class InGameEditor(AppShell):
menuBar.addmenuitem('Entity', 'separator')
permanentTypes = self.level.entTypeReg.getPermanentTypeNames()
entTypes = list(self.level.entTypes)
list(map(entTypes.remove, permanentTypes))
for permanentType in permanentTypes:
entTypes.remove(permanentType)
entTypes.sort()
numEntities = len(entTypes)
cascadeMenu = ''