Files
fulpstation/fulp_modules/main_features/beefmen/code/beefman_integration.dm
John Willard 7be3d5e69a Modularizes a ton of Fulp edits within TG code (#362)
* removes fulp edits from job.dm

* crew monitor and basemap

* revert

* MODULAR BLOODSUCKER HUDS FINALLY

* 2 more fulp edits knocked out

* re-adds chain of command but modular

* moves bloodsucker define to new bloodsucker defines file

* chain of command fix

* ok good enough

* Update mentor_clientprocs.dm
2021-09-26 19:16:16 -06:00

21 lines
711 B
Plaintext

// ATOMS //
/atom
var/use_without_hands = FALSE // Now you can use something regardless of having a hand. EX: Beefman Phobetor Tears
/// We're making Beefmen load their accessories
/world/proc/make_fulp_datum_references_lists()
init_sprite_accessory_subtypes(/datum/sprite_accessory/beef/eyes, GLOB.eyes_beefman)
init_sprite_accessory_subtypes(/datum/sprite_accessory/beef/mouth, GLOB.mouths_beefman)
/**
* # If you're looking to improve this:
*
* Request a change at the upstream to change
* /proc/make_datum_references_lists()
* to
* /world/proc/make_datum_references_lists()
*
* This one line change will allow us to use that proc directly, rather than make our own off of /world/New()
*/