Strip build should reset bulkheads

This commit is contained in:
Colin McLeod
2015-06-16 15:26:05 -07:00
parent 45c96dc136
commit 4686f17d18

View File

@@ -148,6 +148,7 @@ angular.module('app').controller('OutfitController', ['$window', '$rootScope', '
}
ship.hardpoints.forEach(function(slot) { ship.use(slot, null, null); });
ship.internal.forEach(function(slot) { ship.use(slot, null, null); });
ship.useBulkhead(0);
$scope.code = Serializer.fromShip(ship);
updateState();
};