some mind jobs

This commit is contained in:
Kashargul
2024-09-12 23:48:31 +02:00
parent 8a90ae6523
commit a123f87e68
67 changed files with 297 additions and 172 deletions
@@ -78,7 +78,7 @@
var/choice
var/finalized = "No"
if(jobban_isbanned(M, "GhostRoles"))
if(jobban_isbanned(M, JOB_GHOSTROLES))
to_chat(M, "<span class='warning'>You cannot inhabit this creature because you are banned from playing ghost roles.</span>")
reset_ghostpod()
return
@@ -87,7 +87,7 @@
/obj/structure/ghost_pod/ghost_activated/attack_ghost(var/mob/observer/dead/user)
//VOREStation Add Start
if(jobban_isbanned(user, "GhostRoles"))
if(jobban_isbanned(user, JOB_GHOSTROLES))
to_chat(user, "<span class='warning'>You cannot inhabit this creature because you are banned from playing ghost roles.</span>")
return
@@ -11,7 +11,7 @@
var/activated = FALSE
/obj/structure/ghost_pod/manual/attack_ghost(var/mob/observer/dead/user)
if(jobban_isbanned(user, "GhostRoles"))
if(jobban_isbanned(user, JOB_GHOSTROLES))
to_chat(user, "<span class='warning'>You cannot inhabit this creature because you are banned from playing ghost roles.</span>")
return
@@ -88,7 +88,7 @@
return
//VOREStation Add Start
if(jobban_isbanned(user, "GhostRoles"))
if(jobban_isbanned(user, JOB_GHOSTROLES))
to_chat(user, "<span class='warning'>You cannot become a mouse because you are banned from playing ghost roles.</span>")
return
//VOREStation Add End