mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-26 02:02:39 +00:00
15 lines
373 B
Plaintext
15 lines
373 B
Plaintext
/datum/map_template/vr
|
|
name = null
|
|
var/id = null // For blacklisting purposes, all vr levels need an id
|
|
var/description = "This is a placeholder. Please contact your virtual adminsitrator if you see this."
|
|
var/outfit = null
|
|
|
|
var/prefix = null
|
|
var/suffix = null
|
|
|
|
/datum/map_template/vr/New()
|
|
if(!name && id)
|
|
name = id
|
|
|
|
mappath = prefix + suffix
|
|
..(path = mappath) |