Skip to content

Commit

Permalink
Remove the 9th position
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres Castillo Alarcon committed Oct 25, 2024
1 parent 4736685 commit c7f927f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/src/decode-planet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const handler: Handler = async (event: HandlerEvent, context: HandlerContext) =>
population: decodePopulation(planetCode[5]),
government: decodeGovernment(planetCode[6]),
lawLevel: decodeLawLevel(planetCode[7]),
techLevel: decodeTechLevel(planetCode[9])
techLevel: decodeTechLevel(planetCode[8])
}

return {
Expand Down

0 comments on commit c7f927f

Please sign in to comment.