Skip to content

Commit

Permalink
Merge pull request #166 from Very-Soft/master
Browse files Browse the repository at this point in the history
Liddol updates
  • Loading branch information
Very-Soft authored Mar 12, 2024
2 parents a6f3056 + 717492a commit 3b093bf
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 3 deletions.
1 change: 1 addition & 0 deletions code/modules/admin/admin_verb_lists_vr.dm
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ var/list/admin_verbs_fun = list(
/client/proc/smite,
/client/proc/admin_lightning_strike,
/client/proc/resize, //VOREStation Add,
/client/proc/see_ghosts, //RS ADD
/client/proc/cmd_admin_droppod_deploy,
/client/proc/adminorbit, //VOREStation Add
/client/proc/add_mob_for_narration, //VOREStation Add
Expand Down
18 changes: 18 additions & 0 deletions code/modules/admin/verbs/see_ghosts_RS.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/client/proc/see_ghosts(var/mob/living/L in view(view))
set name = "See Ghosts"
set desc = "Allows one to see ghosts!"
set category = "Fun"
if(!check_rights(R_ADMIN, R_FUN))
return

if(L.see_invisible_default == SEE_INVISIBLE_LIVING)
L.see_invisible_default = SEE_INVISIBLE_OBSERVER
L.plane_holder.set_vis(VIS_GHOSTS, TRUE)
to_chat(src,"<span class='warning'>\The [L] can now see ghosts.</span>")
else
L.see_invisible_default = SEE_INVISIBLE_LIVING
L.plane_holder.set_vis(VIS_GHOSTS, FALSE)
to_chat(src,"<span class='warning'>\The [L] can no longer see ghosts.</span>")

log_and_message_admins("has toggled [key_name(L)]'s ability to see ghosts.")
feedback_add_details("admin_verb","SEEGHOSTS")
2 changes: 1 addition & 1 deletion code/modules/client/preferences_spawnpoints.dm
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ var/list/spawntypes = list()
display_name = "Redgate"
msg = "has completed translation from offsite redgate"
announcement = FALSE
restrict_job = list(USELESS_JOB, "Intern")
restrict_job = list(USELESS_JOB, "Intern", "Entertainer", "Entrepreneur")

/datum/spawnpoint/redgate/New()
..()
Expand Down
4 changes: 2 additions & 2 deletions maps/groundbase/groundbase_defines.dm
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
)

lateload_redgate = list(
/* list("Redgate - Teppi Ranch"),
list("Redgate - Teppi Ranch"),
list("Redgate - Innland"),
// list("Redgate - Abandoned Island"), //This will come back later
list("Redgate - Dark Adventure"),
Expand All @@ -222,7 +222,7 @@
list("Redgate - Islands Underwater","Redgate - Islands"),
list("Redgate - Moving Train", "Redgate - Moving Train Upper Level"),
list("Redgate - Fantasy Dungeon", "Redgate - Fantasy Town"),
list("Redgate - Snowglobe"),*/
list("Redgate - Snowglobe"),
list("Redgate - Pet Island")
)

Expand Down
1 change: 1 addition & 0 deletions vorestation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -1783,6 +1783,7 @@
#include "code\modules\admin\verbs\randomverbs.dm"
#include "code\modules\admin\verbs\randomverbs_vr.dm"
#include "code\modules\admin\verbs\resize.dm"
#include "code\modules\admin\verbs\see_ghosts_RS.dm"
#include "code\modules\admin\verbs\smite.dm"
#include "code\modules\admin\verbs\striketeam.dm"
#include "code\modules\admin\verbs\tripAI.dm"
Expand Down

0 comments on commit 3b093bf

Please sign in to comment.