mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 03:02:54 +00:00
11 lines
358 B
Plaintext
11 lines
358 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/enabled = TRUE //Pauses a mob if disabled (Prevents life ticks from happening)
|
|
var/died_in_vr = FALSE //For virtual reality sleepers
|
|
|
|
/mob/is_incorporeal()
|
|
if(incorporeal_move)
|
|
return 1
|
|
..()
|