Skip to content

Commit

Permalink
Eggsac egg plant egg_item.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldenDarkness55 authored Jul 27, 2023
1 parent 633d249 commit 2206ed6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/xenomorph/egg_item.dm
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
to_chat(user, SPAN_XENOWARNING("[src] must be planted on [lowertext(hive.prefix)]weeds."))
return

if(!hive_weeds && user.mutation_type != CARRIER_EGGSAC)
if(!hive_weeds)
to_chat(user, SPAN_XENOWARNING("[src] can only be planted on [lowertext(hive.prefix)]hive weeds."))
return

Expand All @@ -117,7 +117,7 @@
return

for(var/obj/effect/alien/weeds/weed in T)
if(weed.weed_strength >= WEED_LEVEL_HIVE || user.mutation_type == CARRIER_EGGSAC)
if(weed.weed_strength >= WEED_LEVEL_HIVE)
user.use_plasma(30)
var/obj/effect/alien/egg/newegg = new /obj/effect/alien/egg(T, hivenumber)

Expand Down

0 comments on commit 2206ed6

Please sign in to comment.