From 765f686bcbe8ed864e3a37b06d90a6a3e374918e Mon Sep 17 00:00:00 2001 From: Geeves Date: Wed, 1 Apr 2020 20:27:30 +0200 Subject: [PATCH] Visitor Ghostrole Improvements (#8540) --- code/modules/ghostroles/spawner/human/visitor.dm | 14 +++++++------- html/changelogs/geeves-visitor_ghost_role_desc.yml | 6 ++++++ 2 files changed, 13 insertions(+), 7 deletions(-) create mode 100644 html/changelogs/geeves-visitor_ghost_role_desc.yml diff --git a/code/modules/ghostroles/spawner/human/visitor.dm b/code/modules/ghostroles/spawner/human/visitor.dm index dc14b746cc4..3e4c83b880c 100644 --- a/code/modules/ghostroles/spawner/human/visitor.dm +++ b/code/modules/ghostroles/spawner/human/visitor.dm @@ -1,7 +1,7 @@ -/datum/ghostspawner/human/visitorerror - short_name = "visitorerror" +/datum/ghostspawner/human/visitor + short_name = "visitor" name = "Visitor" - desc = "You are a Visitor, but noone told them." + desc = "You are a random visitor that boarded the NSS Aurora, visiting for any reason you can think of. You do not have any records, as you are not a Nanotrasen employee." tags = list("External") enabled = FALSE @@ -11,8 +11,8 @@ //Vars related to human mobs outfit = /datum/outfit/admin/random/visitor - possible_species = list("Human","Skrell","Tajara","Unathi") - possible_genders = list(MALE,FEMALE) + possible_species = list("Human", "Skrell", "Tajara", "Unathi") + possible_genders = list(MALE, FEMALE) allow_appearance_change = APPEARANCE_PLASTICSURGERY assigned_role = "Visitor" @@ -23,5 +23,5 @@ enable_chance = 10 -/datum/ghostspawner/human/visitorerror/select_spawnpoint(var/use=TRUE) - return pick(latejoin) \ No newline at end of file +/datum/ghostspawner/human/visitor/select_spawnpoint(var/use = TRUE) + return pick(latejoin) diff --git a/html/changelogs/geeves-visitor_ghost_role_desc.yml b/html/changelogs/geeves-visitor_ghost_role_desc.yml new file mode 100644 index 00000000000..5a11542a419 --- /dev/null +++ b/html/changelogs/geeves-visitor_ghost_role_desc.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - tweak: "The description for the random visitor anti-no-record-meta ghost role has been improved." \ No newline at end of file