Open robb83 opened 1 month ago
If I understand the API correctly, maxFuel should always represent the total size of the fuel tank, after I take a step, the value of maxFuel is the same as the value of fuel.
Initial response:
{ "id": 26, "name": "robb83", "color": { "r": 210, "g": 182, "b": 96 }, "fuel": 20, "position": { "x": 5, "y": 9 }, "nextAction": null, "lastResult": { "tiles": [ ... ] }, "maxFuel": 20 }
After Move:
{ "id": 26, "name": "robb83", "color": { "r": 210, "g": 182, "b": 96 }, "fuel": 19, "position": { "x": 6, "y": 9 }, "nextAction": null, "lastResult": { "tiles": [ ... ] }, "maxFuel": 19 }
Good catch :)
If I understand the API correctly, maxFuel should always represent the total size of the fuel tank, after I take a step, the value of maxFuel is the same as the value of fuel.
Initial response:
After Move: