Patches for 4/18/17 (#454)
* fixes modular receiver sprites * fixes legs rendering for taurs * fixes shoes not rendering in UI for nagas * typo fix in preferences.dm * crewsimov * Revert "fixes legs rendering for taurs" This reverts commit 8a64c0c80af8a6798639bb151d1448eeb454ac5d. * fixes looc logging * fixes gamemode voting * admin respawn bypass * thanks GitHub Desktop totally wanted to omit the very important if() * proc tweak * savefile sanitizing
This commit is contained in:
@@ -258,11 +258,6 @@ There are several things that need to be remembered:
|
||||
if(get_num_legs() <2)
|
||||
return
|
||||
|
||||
if("taur" in dna.species.mutant_bodyparts)
|
||||
var/tpref = dna.features["taur"]
|
||||
if(tpref == "Naga")
|
||||
return
|
||||
|
||||
if(client && hud_used)
|
||||
var/obj/screen/inventory/inv = hud_used.inv_slots[slot_shoes]
|
||||
inv.update_icon()
|
||||
|
||||
@@ -429,8 +429,14 @@
|
||||
set name = "Respawn"
|
||||
set category = "OOC"
|
||||
|
||||
if (!( GLOB.abandon_allowed ))
|
||||
if(!client)
|
||||
log_game("[usr.key] AM failed due to disconnect.")
|
||||
return
|
||||
if (!( GLOB.abandon_allowed ))
|
||||
if(!(client.holder))
|
||||
return
|
||||
log_game("[usr.name]/[usr.key] was allowed to bypass the respawn restriction because they are an admin.")
|
||||
to_chat(src, "<span class='notice'>You have been allowed to bypass the respawn configuration due to being an admin.</span>")
|
||||
if ((stat != 2 || !( SSticker )))
|
||||
to_chat(usr, "<span class='boldnotice'>You must be dead to use this!</span>")
|
||||
return
|
||||
@@ -439,9 +445,6 @@
|
||||
|
||||
to_chat(usr, "<span class='boldnotice'>Please roleplay correctly!</span>")
|
||||
|
||||
if(!client)
|
||||
log_game("[usr.key] AM failed due to disconnect.")
|
||||
return
|
||||
client.screen.Cut()
|
||||
client.screen += client.void
|
||||
if(!client)
|
||||
|
||||
Reference in New Issue
Block a user