Skip to content

Commit 0c88bf6

Browse files
authored
Fix refuel ship example (#104)
The data type of `units` in the refuel example should be an integer instead of a string.
1 parent beccfa5 commit 0c88bf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reference/SpaceTraders.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3133,7 +3133,7 @@
31333133
"units": {
31343134
"type": "integer",
31353135
"description": "The amount of fuel to fill in the ship's tanks. When not specified, the ship will be refueled to its maximum fuel capacity. If the amount specified is greater than the ship's remaining capacity, the ship will only be refueled to its maximum fuel capacity. The amount specified is not in market units but in ship fuel units.",
3136-
"example": "100",
3136+
"example": 100,
31373137
"minimum": 1
31383138
},
31393139
"fromCargo": {
@@ -3966,4 +3966,4 @@
39663966
"parameters": []
39673967
}
39683968
}
3969-
}
3969+
}

0 commit comments

Comments
 (0)