From aa7c0666d37cb0e7bb346689d8a54387a0989f59 Mon Sep 17 00:00:00 2001 From: krookodilehunter <103150968+krookodilehunter@users.noreply.github.com> Date: Sat, 8 Jun 2024 18:20:58 -0500 Subject: [PATCH] Fixes some Raptor grammar (#83794) ## About The Pull Request Corrects some grammar in the raptor code. (This time it should be correct!) ## Why It's Good For The Game Good grammar is best grammar ## Changelog :cl: spellcheck: fixes bad raptor grammar /:cl: --- .../living/basic/lavaland/raptor/raptor_ai_controller.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/basic/lavaland/raptor/raptor_ai_controller.dm b/code/modules/mob/living/basic/lavaland/raptor/raptor_ai_controller.dm index e036be575c9..7ae64e9fb8a 100644 --- a/code/modules/mob/living/basic/lavaland/raptor/raptor_ai_controller.dm +++ b/code/modules/mob/living/basic/lavaland/raptor/raptor_ai_controller.dm @@ -3,10 +3,10 @@ /datum/ai_controller/basic_controller/raptor blackboard = list( BB_INTERACTIONS_WITH_OWNER = list( - "Pecks", - "Nuzzles", - "Wags tail against", - "Playfully leans against" + "pecks", + "nuzzles", + "wags their tail against", + "playfully leans against" ), BB_TARGETING_STRATEGY = /datum/targeting_strategy/basic/raptor, BB_PET_TARGETING_STRATEGY = /datum/targeting_strategy/basic/raptor,