recieve -> receive (#25123)

* recieve -> receive

* Unfix.

---------

Co-authored-by: FunnyMan3595 (Charlie Nolan) <funnyman@google.com>
Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com>
This commit is contained in:
Charlie Nolan
2024-04-18 21:16:07 +00:00
committed by GitHub
co-authored by FunnyMan3595 S34N
parent c8e59706e2
commit 7562db8c3d
26 changed files with 47 additions and 46 deletions
+1 -1
View File
@@ -163,7 +163,7 @@
* Register to listen for a signal from the passed in target
*
* This sets up a listening relationship such that when the target object emits a signal
* the source datum this proc is called upon, will recieve a callback to the given proctype
* the source datum this proc is called upon, will receive a callback to the given proctype
* Return values from procs registered must be a bitfield
*
* Arguments:
+1 -1
View File
@@ -37,7 +37,7 @@
UnregisterSignal(parent, COMSIG_HOSTILE_FOUND_TARGET)
return ..()
///Handles giving the boss music to a new target the fauna has recieved.
///Handles giving the boss music to a new target the fauna has received.
///Keeps track of them to not repeatedly overwrite its own track.
/datum/component/boss_music/proc/on_target_found(atom/source, mob/new_target)
SIGNAL_HANDLER
+3 -3
View File
@@ -68,7 +68,7 @@
* Arguments:
* * datum/source - this will be the `hasprox_receiver`
* * atom/old_loc - the location the receiver just moved from
* * dir - the direction the reciever just moved in
* * dir - the direction the receiver just moved in
*/
/datum/component/proximity_monitor/proc/on_receiver_move(datum/source, atom/old_loc, dir)
SIGNAL_HANDLER
@@ -120,7 +120,7 @@
/**
* Called when the receiver or an atom in the `nested_receiver_locs` list moves into a disposals holder object.
*
* This proc recieves arguments, but they aren't needed.
* This proc receives arguments, but they aren't needed.
*/
/datum/component/proximity_monitor/proc/on_disposal_enter(datum/source)
SIGNAL_HANDLER
@@ -130,7 +130,7 @@
/**
* Called when the receiver or an atom in the `nested_receiver_locs` list moves out of a disposals holder object.
*
* This proc recieves arguments, but they aren't needed.
* This proc receives arguments, but they aren't needed.
*/
/datum/component/proximity_monitor/proc/on_disposal_exit(datum/source)
SIGNAL_HANDLER
+1 -1
View File
@@ -45,7 +45,7 @@
UnregisterSignal(parent, list(COMSIG_MOVABLE_CROSSED, COMSIG_ATOM_ENTERED))
/**
Called whenever the parent recieves either the `MOVABLE_CROSSED` signal or the `ATOM_ENTERED` signal.
Called whenever the parent receives either the `MOVABLE_CROSSED` signal or the `ATOM_ENTERED` signal.
Calls the `victim`'s `slip()` proc with the component's variables as arguments.
Additionally calls the parent's `after_slip()` proc on the `victim`.