Initial commit of new map system for Virgo

This commit is contained in:
Arokha Sieyes
2017-03-02 23:28:30 -05:00
parent 8749e2bc02
commit a3e5e7327f
16 changed files with 17212 additions and 17106 deletions

View File

@@ -14,7 +14,7 @@
var/turf/T = get_turf(C)
if(!T)
continue
if(!(T.z in config.station_levels))
if(!(T.z in using_map.station_levels))
continue
place_ian(T)

View File

@@ -1,5 +0,0 @@
// Override Lobby Image
/obj/effect/lobby_image
icon = 'icons/misc/title_vr.dmi'
lobby_images = list("title")

View File

@@ -13,7 +13,7 @@
/obj/item/weapon/implant/backup/get_data()
var/dat = {"
<b>Implant Specifications:</b><BR>
<b>Name:</b> [company_name] Employee Backup Implant<BR>
<b>Name:</b> [using_map.company_name] Employee Backup Implant<BR>
<b>Life:</b> ~8 hours.<BR>
<b>Important Notes:</b> Implant is life-limited due to KHI licensing restrictions. Dissolves into harmless biomaterial after around ~8 hours, the typical work shift.<BR>
<HR>

View File

@@ -88,7 +88,7 @@
/obj/machinery/computer/telescience/ui_interact(mob/user, ui_key = "main", var/datum/nanoui/ui = null, var/force_open = 1)
user.set_machine(src)
var/data[0]
if(!telepad)
in_use = 0 //Yeah so if you deconstruct teleporter while its in the process of shooting it wont disable the console
@@ -109,7 +109,7 @@
data["tempMsg"] = "Telepad undergoing physical maintenance operations."
data["sectorOptions"] = list()
for(var/z in config.player_levels)
for(var/z in using_map.player_levels)
data["sectorOptions"] += z
if(last_tele_data)
@@ -294,7 +294,7 @@
telefail()
temp_msg = "ERROR!<BR>No distance selected!"
return
if(!(z_co in config.player_levels))
if(!(z_co in using_map.player_levels))
telefail()
temp_msg = "ERROR! Sector is outside known time and space!"
return
@@ -335,7 +335,7 @@
if(href_list["setz"])
var/new_z = text2num(href_list["setz"])
if(new_z in config.player_levels)
if(new_z in using_map.player_levels)
z_co = new_z
if(href_list["ejectGPS"])