Missing Ls added

This commit is contained in:
PeekabooSteam
2023-10-06 16:56:09 +01:00
parent 3794207d97
commit 382013d0ca
8 changed files with 14 additions and 14 deletions

View File

@@ -45,7 +45,7 @@ export class AirUnitEditor extends UnitEditor {
addStringInput(this.contentDiv2, "Filename", blueprint.filename ?? "", "text", (value: string) => { blueprint.filename = value; });
addStringInput(this.contentDiv2, "Cost", String(blueprint.cost) ?? "", "number", (value: string) => { blueprint.cost = parseFloat(value); });
addStringInput(this.contentDiv2, "Rufels from", String(blueprint.refuelsFrom) ?? "", "text", (value: string) => { blueprint.refuelsFrom = value; });
addStringInput(this.contentDiv2, "Refueling type", String(blueprint.refuelingType) ?? "", "text", (value: string) => { blueprint.refuelingType = value; });
addStringInput(this.contentDiv2, "Refuelling type", String(blueprint.refuellingType) ?? "", "text", (value: string) => { blueprint.refuellingType = value; });
/* Add a scrollable list of loadouts that the user can edit */
var title = document.createElement("label");