Typos
This commit is contained in:
@@ -34,7 +34,7 @@
|
|||||||
//Errors go to user.
|
//Errors go to user.
|
||||||
/proc/generate_custom_holoform_from_prefs_safe(datum/preferences/prefs, mob/user)
|
/proc/generate_custom_holoform_from_prefs_safe(datum/preferences/prefs, mob/user)
|
||||||
if(user)
|
if(user)
|
||||||
if(user.prefs.last_custom_holoform < world.time + CUSTOM_HOLOFORM_DELAY)
|
if(user.client.prefs.last_custom_holoform < world.time + CUSTOM_HOLOFORM_DELAY)
|
||||||
return
|
return
|
||||||
return generate_custom_holoform_from_prefs(prefs, null, null, TRUE)
|
return generate_custom_holoform_from_prefs(prefs, null, null, TRUE)
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
/client/verb/clear_custom_holoform()
|
/client/verb/clear_custom_holoform()
|
||||||
set naame = "Clear Custom Holoform"
|
set name = "Clear Custom Holoform"
|
||||||
set desc = "Clear your current custom holoform"
|
set desc = "Clear your current custom holoform"
|
||||||
|
|
||||||
prefs?.custom_holoform = null
|
prefs?.custom_holoform_icon = null
|
||||||
to_chat(src, "<span class='boldnotice'>Holoform removed.</span>")
|
to_chat(src, "<span class='boldnotice'>Holoform removed.</span>")
|
||||||
|
|
||||||
/client/verb/set_custom_holoform()
|
/client/verb/set_custom_holoform()
|
||||||
|
|||||||
@@ -91,7 +91,7 @@
|
|||||||
..()
|
..()
|
||||||
update_resting_icon(resting)
|
update_resting_icon(resting)
|
||||||
|
|
||||||
/mob/living/silicon/pai/update_icon()
|
/mob/living/silicon/pai/proc/update_icon()
|
||||||
if((chassis == "custom") && !custom_holoform_icon)
|
if((chassis == "custom") && !custom_holoform_icon)
|
||||||
chassis = pick(possible_chassis - "custom")
|
chassis = pick(possible_chassis - "custom")
|
||||||
if(chassis != "custom")
|
if(chassis != "custom")
|
||||||
|
|||||||
Reference in New Issue
Block a user