Skip to content

Commit

Permalink
Merge pull request #183 from lilBlovy/RespawnVerb
Browse files Browse the repository at this point in the history
Respawn Fix
  • Loading branch information
Tk420634 authored Dec 27, 2024
2 parents 9408717 + 72bb5f4 commit 35c3d4c
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions code/modules/mob/mob.dm
Original file line number Diff line number Diff line change
Expand Up @@ -607,13 +607,10 @@
set name = "Respawn"
set category = "OOC"

// /* check respawn is on */
// if(CONFIG_GET(flag/norespawn))
// return
// /* check player is actually dead */
// if((stat != DEAD || !( SSticker )))
// to_chat(usr, span_boldnotice("I must be dead to use this!"))
// return
/* check player is actually dead */
if((stat != DEAD))
to_chat(usr, span_boldnotice("I must be dead to use this!"))
return

var/is_admin = check_rights_for(src.client, R_ADMIN)
var/test = world.time - src.timeofdeath //How long dead for in deciseconds -- src can either be the corpse or ghost
Expand Down

0 comments on commit 35c3d4c

Please sign in to comment.