|
@@ -26,11 +26,8 @@ function isSquadFull(squad: Mech[]) {
|
|
|
|
|
|
function Squad({pickObservers} : {pickObservers: {[key: string] : MechObserver}}) {
|
|
|
|
|
|
- const it1: Mech = {id: 1, name: 'HelloType', kind: 'K1', health: 3};
|
|
|
- const it2: Mech = {id: 2, name: 'Giant Mech', kind: 'K1', health: 3};
|
|
|
- const it3: Mech = {id: 3, name: 'Techno-prop', kind: 'K1', health: 4};
|
|
|
const placeHolder: Mech = {id: -1, name: 'Empty slot', kind: '_', health: 0};
|
|
|
- const [squadMechs, setSquadMechs] = useState([it1, it2, it3]);
|
|
|
+ const [squadMechs, setSquadMechs] = useState([placeHolder, placeHolder, placeHolder]);
|
|
|
|
|
|
function putInFreeSlot(mech: Mech, squad: Mech[]): Mech[] {
|
|
|
const freeSlotIndex = squad.findIndex(isEmptySlot);
|