28 lines
814 B
Plaintext
28 lines
814 B
Plaintext
/mob/living/Login()
|
|
..()
|
|
//Mind updates
|
|
sync_mind()
|
|
mind.show_memory(src, 0)
|
|
|
|
//Round specific stuff
|
|
if(SSticker.mode)
|
|
switch(SSticker.mode.name)
|
|
if("sandbox")
|
|
CanBuild()
|
|
|
|
update_damage_hud()
|
|
update_health_hud()
|
|
|
|
var/turf/T = get_turf(src)
|
|
if (isturf(T))
|
|
update_z(T.z)
|
|
|
|
//Vents
|
|
if(ventcrawler)
|
|
to_chat(src, "<span class='notice'>You can ventcrawl! Use alt+click on vents to quickly travel about the station.</span>")
|
|
|
|
if(ranged_ability)
|
|
ranged_ability.add_ranged_ability(src, "<span class='notice'>You currently have <b>[ranged_ability]</b> active!</span>")
|
|
if((vore_flags & VORE_INIT) && !(vore_flags & VOREPREF_INIT)) //Vore's been initialized, voreprefs haven't. If this triggers then that means that voreprefs failed to load due to the client being missing.
|
|
copy_from_prefs_vr()
|