mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
[MIRROR] DCS Update + Footstep element (#10125)
Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
4dab3b582f
commit
4524b7b325
@@ -361,3 +361,10 @@ GLOBAL_LIST_EMPTY(legacy_globals)
|
||||
GLOB.legacy_globals["item_tf_spawnpoints"] = item_tf_spawnpoints
|
||||
GLOB.legacy_globals["existing_solargrubs"] = existing_solargrubs
|
||||
*/
|
||||
|
||||
var/global/list/selectable_footstep = list(
|
||||
"Default" = FOOTSTEP_MOB_HUMAN,
|
||||
"Claw" = FOOTSTEP_MOB_CLAW,
|
||||
"Light Claw" = FOOTSTEP_MOB_TESHARI,
|
||||
"Slither" = FOOTSTEP_MOB_SLITHER,
|
||||
)
|
||||
|
||||
@@ -1,18 +1,3 @@
|
||||
|
||||
//Reagent Vore belly Sounds
|
||||
GLOBAL_LIST_INIT(slosh, list(
|
||||
'sound/vore/walkslosh1.ogg',
|
||||
'sound/vore/walkslosh2.ogg',
|
||||
'sound/vore/walkslosh3.ogg',
|
||||
'sound/vore/walkslosh4.ogg',
|
||||
'sound/vore/walkslosh5.ogg',
|
||||
'sound/vore/walkslosh6.ogg',
|
||||
'sound/vore/walkslosh7.ogg',
|
||||
'sound/vore/walkslosh8.ogg',
|
||||
'sound/vore/walkslosh9.ogg',
|
||||
'sound/vore/walkslosh10.ogg'
|
||||
))
|
||||
|
||||
var/global/list/item_tf_spawnpoints = list() // Global variable tracking which items are item tf spawnpoints
|
||||
|
||||
//stuff that only synths can eat
|
||||
@@ -197,10 +182,3 @@ var/global/list/vr_mob_spawner_options = list(
|
||||
"Stok" = /mob/living/carbon/human/stok,
|
||||
//"Gryphon" = /mob/living/simple_mob/vore/gryphon // Disabled until tested
|
||||
)
|
||||
|
||||
var/global/list/selectable_footstep = list(
|
||||
"Default" = FOOTSTEP_MOB_HUMAN,
|
||||
"Claw" = FOOTSTEP_MOB_CLAW,
|
||||
"Light Claw" = FOOTSTEP_MOB_TESHARI,
|
||||
"Slither" = FOOTSTEP_MOB_SLITHER,
|
||||
)
|
||||
|
||||
@@ -99,7 +99,6 @@
|
||||
/proc/cmp_stored_item_name(datum/stored_item/A, datum/stored_item/B)
|
||||
return sorttext(B.item_name, A.item_name)
|
||||
|
||||
// CHOMPEdit Start - More text compares
|
||||
/proc/cmp_embed_text_asc(a,b)
|
||||
if(isdatum(a))
|
||||
a = REF(a)
|
||||
@@ -113,4 +112,3 @@
|
||||
if(isdatum(b))
|
||||
b = REF(b)
|
||||
return sorttext("[a]", "[b]")
|
||||
// CHOMPEdit End
|
||||
|
||||
Reference in New Issue
Block a user