diff --git a/components/ExtraWeapons/index.tsx b/components/ExtraWeapons/index.tsx index 6ed71447..97bab025 100644 --- a/components/ExtraWeapons/index.tsx +++ b/components/ExtraWeapons/index.tsx @@ -18,16 +18,12 @@ interface Props { exists: boolean found?: boolean offset: number - onSelect: (type: GridType, weapon: Weapon, position: number) => void + onClick: (position: number) => void } const ExtraWeapons = (props: Props) => { const numWeapons: number = 3 - function receiveWeapon(weapon: Weapon, position: number) { - props.onSelect(GridType.Weapon, weapon, position) - } - return (