Skip to content

Commit

Permalink
[MIRROR] Gibbing a Security Officer produces Pig Meat (#2049)
Browse files Browse the repository at this point in the history
* Gibbing a Security Officer produces Pig Meat (#81300)

## About The Pull Request

Ports the applicable half of
Bubberstation/Bubberstation#526 here and makes
it apply to every member of security, sans Detective.


## Why It's Good For The Game

Lore accuracy is a very good thing.


## Changelog
:cl: Cursor
add: Security Officers are now Haram.
/:cl:

* Gibbing a Security Officer produces Pig Meat

---------

Co-authored-by: NovaBot <[email protected]>
Co-authored-by: Cursor <[email protected]>
  • Loading branch information
3 people authored Feb 19, 2024
1 parent 67e738c commit b9bedab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/modules/food_and_drinks/machinery/gibber.dm
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,9 @@

if(ishuman(occupant))
var/mob/living/carbon/human/gibee = occupant
if(gibee.dna && gibee.dna.species)
if(prob(40) && (sourcejob in list(JOB_SECURITY_OFFICER,JOB_WARDEN,JOB_HEAD_OF_SECURITY)))
typeofmeat = /obj/item/food/meat/slab/pig
else if(gibee.dna && gibee.dna.species)
typeofmeat = gibee.dna.species.meat
typeofskin = gibee.dna.species.skinned_type

Expand Down

0 comments on commit b9bedab

Please sign in to comment.