mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 16:09:15 +00:00
* 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
21 lines
711 B
Plaintext
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()
|
|
*/
|