[MIRROR] Removes final remnants of 'targetted' [MDB IGNORE] (#24927)

* Removes final remnants of 'targetted' (#79626)

## About The Pull Request

Finishing what https://github.com/tgstation/tgstation/pull/79513/
started, removes 'targetted' typo from code. Also updates the basic mob
guide with the new updated var names.

## Why It's Good For The Game

Typos bad. Accurate guides good.

## Changelog

🆑
code: gets rid of the rest of the instances of 'targetted' typo from
code
/🆑

* Removes final remnants of 'targetted'

---------

Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>
This commit is contained in:
SkyratBot
2023-11-11 14:11:32 +01:00
committed by GitHub
parent 72b4f37476
commit 2f4010c992
32 changed files with 56 additions and 56 deletions

View File

@@ -102,11 +102,11 @@
* # Pet Command: Use ability
* Use an an ability that does not require any targets
*/
/datum/pet_command/untargetted_ability
///untargetted ability we will use
/datum/pet_command/untargeted_ability
///untargeted ability we will use
var/ability_key
/datum/pet_command/untargetted_ability/execute_action(datum/ai_controller/controller)
/datum/pet_command/untargeted_ability/execute_action(datum/ai_controller/controller)
var/datum/action/cooldown/ability = controller.blackboard[ability_key]
if(!ability?.IsAvailable())
return
@@ -158,7 +158,7 @@
return SUBTREE_RETURN_FINISH_PLANNING
/**
* # Pet Command: Targetted Ability
* # Pet Command: targeted Ability
* Tells a pet to use some kind of ability on the next thing you point at
*/
/datum/pet_command/point_targeting/use_ability