Files
CHOMPStation2/modular_chomp/code/modules/mob/mob.dm
T
NadyrandGitHub fc52bef699 Merge pull request #4796 from tacoguy7765093/VRfix-it-JUST-works
Adds a VR room and a functioning VR map for all your sandbox needs.
2022-10-24 17:13:51 -04:00

9 lines
273 B
Plaintext

/mob
var/voice_freq = 42500 // Preference for character voice frequency
var/list/voice_sounds_list = list() // The sound list containing our voice sounds!
var/died_in_vr = FALSE //For virtual reality sleepers
/mob/is_incorporeal()
if(incorporeal_move)
return 1
..()