Skip to content

Commit

Permalink
[MIRROR] Replaces unused xeno "weed extract" item in abandoned crates…
Browse files Browse the repository at this point in the history
… with, well, weed [MDB IGNORE] (#1019)

* Replaces unused xeno "weed extract" item in abandoned crates with, well, weed (#80157)

* Merge

---------

Co-authored-by: SkyratBot <[email protected]>
Co-authored-by: MrMelbert <[email protected]>
Co-authored-by: Giz <[email protected]>
Co-authored-by: Iajret <[email protected]>
  • Loading branch information
5 people authored Dec 7, 2023
1 parent 4278e0f commit 29d0581
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
6 changes: 0 additions & 6 deletions code/game/objects/items/stacks/sheets/leather.dm
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,6 @@ GLOBAL_LIST_INIT(carp_recipes, list ( \
icon = 'icons/mob/nonhuman-player/alien.dmi'
icon_state = "claw"

/obj/item/weed_extract
name = "weed extract"
desc = "A piece of slimy, purplish weed."
icon = 'icons/mob/nonhuman-player/alien.dmi'
icon_state = "weed_extract"

/*
* Leather SHeet
*/
Expand Down
9 changes: 8 additions & 1 deletion code/modules/mining/abandoned_crates.dm
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,14 @@
if(85 to 86)
new /obj/item/defibrillator/compact(src)
if(87) //1% chance
new /obj/item/weed_extract(src)
var/list/cannabis_seeds = typesof(/obj/item/seeds/cannabis)
var/list/cannabis_plants = typesof(/obj/item/food/grown/cannabis)
for(var/i in 1 to rand(2, 4))
var/seed_type = pick(cannabis_seeds)
new seed_type(src)
for(var/i in 1 to rand(2, 4))
var/cannabis_type = pick(cannabis_plants)
new cannabis_type(src)
if(88)
new /obj/item/reagent_containers/cup/glass/bottle/lizardwine(src)
if(89)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/emote.dm
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
if(!ishuman(user))
return
var/mob/living/carbon/human/human_user = user
if(ishuman(human_user) && !HAS_MIND_TRAIT(human_user, TRAIT_MIMING)) // SKYRAT EDIT CHANGE - Let other species gasp - ORIGINAL: if(human_user.dna.species.id == SPECIES_HUMAN && !HAS_MIND_TRAIT(human_user, TRAIT_MIMING))
if(!HAS_MIND_TRAIT(human_user, TRAIT_MIMING)) // SKYRAT EDIT CHANGE - Let other species gasp - ORIGINAL: if(human_user.dna.species.id == SPECIES_HUMAN && !HAS_MIND_TRAIT(human_user, TRAIT_MIMING))
if(human_user.physique == FEMALE)
return pick('sound/voice/human/gasp_female1.ogg', 'sound/voice/human/gasp_female2.ogg', 'sound/voice/human/gasp_female3.ogg')
else
Expand Down
Binary file modified icons/mob/nonhuman-player/alien.dmi
Binary file not shown.

0 comments on commit 29d0581

Please sign in to comment.