Fix Rogueminer_vr

Errors popped up in Travis that didn't show on DM. Thank you... Fixing the screechuing, I hope.
This commit is contained in:
TheFurryFeline
2019-08-28 15:14:43 -04:00
parent c068e984f7
commit 11627e943f
3 changed files with 28 additions and 26 deletions

View File

@@ -0,0 +1,27 @@
//TFF 28/8/19 - cleanup of areas placement - removes all but rogueminer_vr stuff.
//Rouguelike Mining
/area/asteroid/rogue
var/asteroid_spawns = list()
var/mob_spawns = list()
var/shuttle_area //It would be neat if this were more dynamic, but eh.
/area/asteroid/rogue/zone1
name = "Asteroid Belt Zone 1"
icon_state = "red2"
shuttle_area = /area/shuttle/belter/belt/zone1
/area/asteroid/rogue/zone2
name = "Asteroid Belt Zone 2"
icon_state = "blue2"
shuttle_area = /area/shuttle/belter/belt/zone2
/area/asteroid/rogue/zone3
name = "Asteroid Belt Zone 3"
icon_state = "blue2"
shuttle_area = /area/shuttle/belter/belt/zone3
/area/asteroid/rogue/zone4
name = "Asteroid Belt Zone 4"
icon_state = "red2"
shuttle_area = /area/shuttle/belter/belt/zone4