diff options
author | Aki <nthirtyone@gmail.com> | 2017-09-22 22:21:05 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-09-22 22:21:05 +0200 |
commit | f0d20bb0667f9bafd0075fd506e2a0b40e84e869 (patch) | |
tree | 879e67a4b235373f760f581e82b6ff1f0c60dcde /config/maps | |
parent | bad3e12962e2c7040090ec678d3ed6cfd5586288 (diff) | |
download | roflnauts-f0d20bb0667f9bafd0075fd506e2a0b40e84e869.zip roflnauts-f0d20bb0667f9bafd0075fd506e2a0b40e84e869.tar.gz roflnauts-f0d20bb0667f9bafd0075fd506e2a0b40e84e869.tar.bz2 |
Maps can be unavailable now too; changed loadConfigs to reflect that
Diffstat (limited to 'config/maps')
-rw-r--r-- | config/maps/205.lua | 1 | ||||
-rw-r--r-- | config/maps/404.lua | 1 | ||||
-rw-r--r-- | config/maps/aiguillon.lua | 1 | ||||
-rw-r--r-- | config/maps/alpha.lua | 1 | ||||
-rw-r--r-- | config/maps/default.lua | 1 | ||||
-rw-r--r-- | config/maps/ribbit.lua | 1 | ||||
-rw-r--r-- | config/maps/rill.lua | 1 | ||||
-rw-r--r-- | config/maps/sorona.lua | 1 | ||||
-rw-r--r-- | config/maps/starstorm.lua | 1 |
9 files changed, 9 insertions, 0 deletions
diff --git a/config/maps/205.lua b/config/maps/205.lua index a20fe0a..ec58836 100644 --- a/config/maps/205.lua +++ b/config/maps/205.lua @@ -3,6 +3,7 @@ return name = "AI Station 205", theme = "sorona.ogg", portrait = "assets/maps/205.png", + available = false, center = {x = 0, y = 0}, width = 360, height = 240, diff --git a/config/maps/404.lua b/config/maps/404.lua index 6a5b218..3e47f90 100644 --- a/config/maps/404.lua +++ b/config/maps/404.lua @@ -3,6 +3,7 @@ return name = "AI Station 404", theme = "404.ogg", portrait = "assets/maps/404.png", + available = true, center = {x = 0, y = 0}, width = 360, height = 240, diff --git a/config/maps/aiguillon.lua b/config/maps/aiguillon.lua index e79449f..90bfbb2 100644 --- a/config/maps/aiguillon.lua +++ b/config/maps/aiguillon.lua @@ -3,6 +3,7 @@ return name = "Aiguillon", theme = "aiguillon.ogg", portrait = "assets/maps/aiguillon.png", + available = true, center = {x = 0, y = 10}, width = 370, height = 290, diff --git a/config/maps/alpha.lua b/config/maps/alpha.lua index 3942dde..43c12ee 100644 --- a/config/maps/alpha.lua +++ b/config/maps/alpha.lua @@ -3,6 +3,7 @@ return name = "Alpha Abyss", theme = "alpha.ogg", portrait = "assets/maps/alpha.png", + available = true, center = {x = 0, y = -80}, width = 360, height = 240, diff --git a/config/maps/default.lua b/config/maps/default.lua index 76cd9d3..3c2bd03 100644 --- a/config/maps/default.lua +++ b/config/maps/default.lua @@ -3,6 +3,7 @@ return name = "default", theme = "default.ogg", portrait = "assets/maps/default.png", + available = true, center = {x = 0, y = 0}, width = 360, height = 240, diff --git a/config/maps/ribbit.lua b/config/maps/ribbit.lua index f5e267e..7757e13 100644 --- a/config/maps/ribbit.lua +++ b/config/maps/ribbit.lua @@ -3,6 +3,7 @@ return name = "Ribbit IV", theme = "ribbit.ogg", portrait = "assets/maps/ribbit.png", + available = true, center = {x = 0, y = 50}, width = 360, height = 240, diff --git a/config/maps/rill.lua b/config/maps/rill.lua index 4644ecc..17e9f37 100644 --- a/config/maps/rill.lua +++ b/config/maps/rill.lua @@ -3,6 +3,7 @@ return name = "Rill", theme = "rill.ogg", portrait = "assets/maps/rill.png", + available = true, center = {x = 0, y = 75}, width = 400, height = 260, diff --git a/config/maps/sorona.lua b/config/maps/sorona.lua index 54543c2..99a92b2 100644 --- a/config/maps/sorona.lua +++ b/config/maps/sorona.lua @@ -3,6 +3,7 @@ return name = "Sorona", theme = "sorona.ogg", portrait = "assets/maps/sorona.png", + available = true, center = {x = 0, y = 0}, width = 360, height = 240, diff --git a/config/maps/starstorm.lua b/config/maps/starstorm.lua index bb35a08..3062b54 100644 --- a/config/maps/starstorm.lua +++ b/config/maps/starstorm.lua @@ -3,6 +3,7 @@ return name = "Starstorm", theme = "starstorm.ogg", portrait = "assets/maps/starstorm.png", + available = true, center = {x = 0, y = -20}, width = 400, height = 260, |