mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Initial commit of new map system for Virgo
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
// Override Lobby Image
|
||||
/obj/effect/lobby_image
|
||||
icon = 'icons/misc/title_vr.dmi'
|
||||
lobby_images = list("title")
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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"])
|
||||
|
||||
Reference in New Issue
Block a user