From 1f9ee8e45fd0401dba6c18c694dbba6f2277a483 Mon Sep 17 00:00:00 2001 From: Nick Howell Date: Sun, 9 Mar 2025 21:28:48 -0400 Subject: [PATCH] Fix refuel ship example The data type of `units` in the refuel example should be an integer instead of a string. --- reference/SpaceTraders.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/SpaceTraders.json b/reference/SpaceTraders.json index 5ca950a..5204b5c 100644 --- a/reference/SpaceTraders.json +++ b/reference/SpaceTraders.json @@ -3133,7 +3133,7 @@ "units": { "type": "integer", "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.", - "example": "100", + "example": 100, "minimum": 1 }, "fromCargo": { @@ -3966,4 +3966,4 @@ "parameters": [] } } - } \ No newline at end of file + }