mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 00:29:02 +01:00
* fix ashwalker revives * I know what Golden will say, I'm psychic * I'm not a psychic, I will face this truth * damn spaces
10 lines
231 B
Plaintext
10 lines
231 B
Plaintext
/**
|
|
* The opposite of proc/teach_crafting_recipe
|
|
* will attempt to remove the arg "recipe" from the learned recipes
|
|
*/
|
|
/datum/mind/proc/unteach_crafting_recipe(recipe)
|
|
if(!learned_recipes)
|
|
return
|
|
|
|
learned_recipes &= ~recipe
|