-
Notifications
You must be signed in to change notification settings - Fork 864
New map: quadrants #3310
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
New map: quadrants #3310
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| { | ||
| "name": "Achiran", | ||
| "nations": [ | ||
| { | ||
| "coordinates": [250, 250], | ||
| "flag": "de", | ||
| "name": "first quadrant" | ||
| }, | ||
| { | ||
| "coordinates": [750, 250], | ||
| "flag": "de", | ||
| "name": "second quadrant" | ||
| }, | ||
| { | ||
| "coordinates": [250, 750], | ||
| "flag": "de", | ||
| "name": "third quadrant" | ||
| }, | ||
| { | ||
| "coordinates": [750, 750], | ||
| "flag": "de", | ||
| "name": "fourth quadrant" | ||
| } | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| { | ||
| "map": { | ||
| "height": 1000, | ||
| "num_land_tiles": 810000, | ||
| "width": 1000 | ||
| }, | ||
| "map16x": { | ||
| "height": 250, | ||
| "num_land_tiles": 50176, | ||
| "width": 250 | ||
| }, | ||
| "map4x": { | ||
| "height": 500, | ||
| "num_land_tiles": 202500, | ||
| "width": 500 | ||
| }, | ||
| "name": "Achiran", | ||
| "nations": [ | ||
| { | ||
| "coordinates": [250, 250], | ||
| "flag": "de", | ||
| "name": "first quadrant" | ||
| }, | ||
| { | ||
| "coordinates": [750, 250], | ||
| "flag": "de", | ||
| "name": "second quadrant" | ||
| }, | ||
| { | ||
| "coordinates": [250, 750], | ||
| "flag": "ie", | ||
| "name": "third quadrant" | ||
|
Comment on lines
+29
to
+32
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Flag inconsistency with source file. The third quadrant here uses 🤖 Prompt for AI Agents |
||
| }, | ||
| { | ||
| "coordinates": [750, 750], | ||
| "flag": "de", | ||
| "name": "fourth quadrant" | ||
| } | ||
| ] | ||
| } | ||
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -81,6 +81,7 @@ export const ColoredTeams: Record<string, Team> = { | |
|
|
||
| export enum GameMapType { | ||
| World = "World", | ||
| Quadrants = "Quadrants", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Quadrants is missing from The new Suggested fixAdd arcade: [
GameMapType.TheBox,
GameMapType.Didier,
GameMapType.DidierFrance,
GameMapType.Sierpinski,
+ GameMapType.Quadrants,
],🤖 Prompt for AI Agents |
||
| GiantWorldMap = "Giant World Map", | ||
| Europe = "Europe", | ||
| EuropeClassic = "Europe Classic", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: openfrontio/OpenFrontIO
Length of output: 2271
Fix flag inconsistency for the third quadrant between source and manifest.
The third quadrant has flag
"de"in info.json but flag"ie"in manifest.json. They must match. Either update info.json line 16 to use"ie"to match the manifest, or update the manifest.json line 31 to use"de".Additionally, all four quadrants currently use the same flag in info.json, which appears to be placeholder data. Consider using different flags to visually distinguish each quadrant.
🤖 Prompt for AI Agents