Skip to content

Commit

Permalink
Fixes grammar issues with webs and eggs (#5885)
Browse files Browse the repository at this point in the history
# About the pull request

Fixes two grammar issues:
- When attacking spiderwebs (fixes #5884)
- When forming eggs with the Generate Egg (50) ability

# Explain why it's good for the game

Fewer grammar issues.

# Testing Photographs and Procedure


![image](https://github.com/cmss13-devs/cmss13/assets/49321394/68650ae4-7e14-4763-add0-ebc1cb24c4c2)


![image](https://github.com/cmss13-devs/cmss13/assets/49321394/c2a4ed3e-b06f-4b13-9879-2e58e8a40eec)

# Changelog

:cl:
spellcheck: Fixed some grammar issues when attacking spiderwebs and when
producing eggs as an eggsac carrier.
/:cl:

---------

Co-authored-by: SabreML <[email protected]>
Co-authored-by: Birdtalon <[email protected]>
  • Loading branch information
3 people committed Mar 7, 2024
1 parent 211d5aa commit 5281eaa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions code/game/objects/effects/spiders.dm
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@

/obj/effect/spider/attackby(obj/item/W, mob/user)
if(LAZYLEN(W.attack_verb))
visible_message(SPAN_DANGER("<B>\The [src] have been [pick(W.attack_verb)] with \the [W][(user ? "by [user]." : ".")]"))
visible_message(SPAN_DANGER("[src] has been [pick(W.attack_verb)] with [W][(user ? " by [user]." : ".")]"))
else
visible_message(SPAN_DANGER("<B>\The [src] have been attacked with \the [W][(user ? "by [user]." : ".")]"))
visible_message(SPAN_DANGER("[src] has been attacked with [W][(user ? " by [user]." : ".")]"))

var/damage = W.force / 4

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
if(egg_generation_progress >= 15)
egg_generation_progress = 0
xeno.eggs_cur++
to_chat(xeno, SPAN_XENONOTICE("You generate a egg. Now sheltering: [xeno.eggs_cur] / [xeno.eggs_max]."))
to_chat(xeno, SPAN_XENONOTICE("We generate an egg. Now sheltering: [xeno.eggs_cur] / [xeno.eggs_max]."))
xeno.update_icons()

#undef EGGSAC_OFF_WEED_EGGCAP
Expand Down

0 comments on commit 5281eaa

Please sign in to comment.