Skip to content

Commit

Permalink
Merge pull request #355 from lmenvs/bee-fix
Browse files Browse the repository at this point in the history
bee fixes
  • Loading branch information
dwasint authored Sep 16, 2023
2 parents aeb6392 + 5f328e9 commit 592f93e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions code/modules/mob/living/basic/farm_animals/bee/_bee.dm
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
response_harm_continuous = "squashes"
response_harm_simple = "squash"

guaranteed_butcher_results = list(/obj/item/stack/sheet/animalhide/bee = 1 )

mob_size = MOB_SIZE_LARGE
pixel_x = -16
base_pixel_x = -16
Expand All @@ -44,7 +46,6 @@
held_w_class = WEIGHT_CLASS_TINY
environment_smash = ENVIRONMENT_SMASH_NONE
habitable_atmos = list("min_oxy" = 0, "max_oxy" = 0, "min_plas" = 0, "max_plas" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0)
basic_mob_flags = DEL_ON_DEATH
ai_controller = /datum/ai_controller/basic_controller/bee
///the reagent the bee has
var/datum/reagent/beegent = null
Expand Down Expand Up @@ -99,6 +100,8 @@
if(beehome)
beehome.bees -= src
beehome = null
if(flags_1 & HOLOGRAM_1 || gibbed)
return ..()
var/obj/item/food/pollensac/sac = new(loc) //monkestation edit, bee update
sac.pixel_x = pixel_x
sac.pixel_y = pixel_y
Expand All @@ -109,9 +112,6 @@
sac.reagents.add_reagent(beegent.type, 5)
sac.color = beegent.color
sac.update_appearance()
if(flags_1 & HOLOGRAM_1 || gibbed)
return ..()
new /obj/item/trash/bee(loc, src)
return ..()

/mob/living/basic/bee/proc/pre_attack(mob/living/puncher, atom/target)
Expand Down
1 change: 1 addition & 0 deletions monkestation/code/game/objects/items/choice_beacon.dm
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
/mob/living/basic/mouse/rat,
/mob/living/simple_animal/parrot,
/mob/living/basic/butterfly,
/mob/living/basic/bee/friendly,
/mob/living/simple_animal/crab,
/mob/living/basic/pet/penguin/baby,
/mob/living/basic/pet/fox,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/mob/living/basic/bee/friendly
name = "friendly maintenance bee"
desc = "He wants to bee friends!"
faction = list(FACTION_NEUTRAL)
response_help_continuous = "hugs"
response_help_simple = "hug"
attack_verb_continuous = "nuzzles"
Expand All @@ -20,7 +19,7 @@
/obj/item/stack/sheet/animalhide/bee
name = "bee fuzz"
desc = "How could you do this."
singular_name = "a piece of bee fuzz"
singular_name = "bee fuzz piece"
icon = 'monkestation/icons/mob/simple/bees.dmi'
icon_state = "sheet-bee_fuzz"
inhand_icon_state = null
Expand Down

0 comments on commit 592f93e

Please sign in to comment.