1. What is the alternative name for this I'm trying to build a list of spawned entities and deployables by the player.

    Code:
            void OnEntitySpawned(BaseNetworkable entity){
                var building = entity as BuildingBlock;
                var simpleBlock = entity as SimpleBuildingBlock;
                var cupboard = entity as BuildingPrivlidge;
                var deployable = entity as ItemModDeployable;
               
                if(building != null && _inProgress){
                    playerEntities.Add(building);
                }
               
                if(simpleBlock != null && _inProgress){
                    playerEntities.Add(simpleBlock);
                }
               
                if(cupboard != null && _inProgress){
                    playerEntities.Add(cupboard);
                }   
               
                if(deployable != null && _inProgress){
                    playerEntities.Add(deployable);
                }                   
            }
    [DOUBLEPOST=1467608734][/DOUBLEPOST]Nevermind... FIGURED IT OUT T.T