mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-11 18:22:14 +00:00
ballin'
This commit is contained in:
@@ -26,6 +26,7 @@
|
||||
#define FOOTSTEP_MOB_SLIME 6
|
||||
#define FOOTSTEP_OBJ_MACHINE 7
|
||||
#define FOOTSTEP_OBJ_ROBOT 8
|
||||
#define FOOTSTEP_MOB_SNAKE 9 // BOOB EDIT
|
||||
|
||||
/*
|
||||
|
||||
|
||||
@@ -50,6 +50,10 @@
|
||||
footstep_sounds = 'sound/effects/tank_treads.ogg'
|
||||
RegisterSignal(target, COMSIG_MOVABLE_MOVED, PROC_REF(play_simplestep_machine))
|
||||
return
|
||||
// BOOB EDIT START
|
||||
if(FOOTSTEP_MOB_SNAKE)
|
||||
footstep_sounds = 'sound/effects/footstep/crawl1.ogg'
|
||||
// BOOB EDIT END
|
||||
RegisterSignal(target, COMSIG_MOVABLE_MOVED, PROC_REF(play_simplestep))
|
||||
steps_for_living[target] = 0
|
||||
|
||||
|
||||
@@ -523,6 +523,11 @@
|
||||
var/gender = player_client.prefs.read_preference(/datum/preference/choiced/gender)
|
||||
real_name = species.random_name(gender, TRUE)
|
||||
dna.update_dna_identity()
|
||||
// BOOB EDIT START
|
||||
if(get_taur_mode() == STYLE_TAUR_SNAKE)
|
||||
RemoveElement(/datum/element/footstep, FOOTSTEP_MOB_HUMAN, 0.6, -6)
|
||||
AddElement(/datum/element/footstep, FOOTSTEP_MOB_SNAKE, 15, -6)
|
||||
// BOOB EDIT END
|
||||
|
||||
|
||||
/mob/living/silicon/ai/apply_prefs_job(client/player_client, datum/job/job)
|
||||
|
||||
Reference in New Issue
Block a user