Skip to content

Commit

Permalink
Merge pull request #511 from kurokobo/fungle
Browse files Browse the repository at this point in the history
feat: add support for the new map (the fungle)
  • Loading branch information
denverquane committed Oct 25, 2023
2 parents de7f069 + 7bb561d commit 8193171
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Binary file added assets/maps/fungle.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/maps/fungle_detailed.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions pkg/game/map.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const (
POLUS
DLEKS // Skeld backwards
AIRSHIP
FUNGLE
EMPTYMAP PlayMap = 10
)

Expand All @@ -21,6 +22,7 @@ var MapNames = map[PlayMap]string{
POLUS: "Polus",
DLEKS: "dlekS",
AIRSHIP: "Airship",
FUNGLE: "Fungle",
}

var nameToPlayMap = map[string]int32{
Expand All @@ -29,6 +31,7 @@ var nameToPlayMap = map[string]int32{
"polus": (int32)(POLUS),
"dleks": (int32)(DLEKS),
"airship": (int32)(AIRSHIP),
"fungle": (int32)(FUNGLE),
"NoMap": -1,
}

Expand Down

0 comments on commit 8193171

Please sign in to comment.