Skip to content

Commit

Permalink
Fix minor spelling errors
Browse files Browse the repository at this point in the history
  • Loading branch information
LeDrascol committed Nov 20, 2024
1 parent 0651c21 commit 15e48bb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@
petrified_mob.dna.features["body_size"] = old_size
petrified_mob.dna.update_body_size()
var/damage = deconstructed ? petrified_mob.health : petrified_mob.health*(old_max_health/petrified_mob.maxHealth) - atom_integrity + 100
petrified_mob.take_overall_damage(damage) //any new damage the statue incurred is transfered to the mob
petrified_mob.take_overall_damage(damage) //any new damage the statue incurred is transferred to the mob
petrified_mob.transform = transform
if(was_lying)
petrified_mob.set_body_position(LYING_DOWN)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
STOP_PROCESSING(SSquirks, src)
return

/// Define if nutrition or blood volume is sufficent. Will stop healing if FALSE.
/// Define if nutrition or blood volume is sufficient. Will stop healing if FALSE.
var/has_enough_blood = TRUE

// Check if using nutrition mode
Expand Down Expand Up @@ -425,16 +425,16 @@

/**
* Staked interaction for Bloodfledges
* * Causes instant death if the target is unconsious
* * Warns normally if the target is consious
* * Causes instant death if the target is unconscious
* * Warns normally if the target is conscious
*/
/datum/quirk/item_quirk/bloodfledge/proc/on_staked(atom/target, forced)
SIGNAL_HANDLER

// Check if unconsious
// Check if unconscious
if(quirk_holder.IsSleeping() || quirk_holder.stat >= UNCONSCIOUS)
// Warn the user
to_chat(target, span_userdanger("You have been staked while unconsious!"))
to_chat(target, span_userdanger("You have been staked while unconscious!"))

// Kill the user
quirk_holder.death()
Expand All @@ -445,7 +445,7 @@
// Do nothing else
return

// User is consious
// User is conscious
// Warn the user of staking
to_chat(target, span_userdanger("You have been staked! Your powers are useless while it remains in place."))
target.balloon_alert(target, "you have been staked!")
Expand Down Expand Up @@ -553,7 +553,7 @@
if(QDELETED(owner))
return FALSE

// Check for holyness
// Check for holiness
if(owner.can_block_magic(MAGIC_RESISTANCE_HOLY))
// Warn user and return
to_chat(owner, span_warning("A holy force prevents you from using your powers!"))
Expand Down Expand Up @@ -1039,7 +1039,7 @@
// Return
return
else
/// Is this valid nourshing blood? Does not grant nutrition if FALSE.
/// Is this valid nourishing blood? Does not grant nutrition if FALSE.
var/blood_valid = TRUE

/// Should blood be transferred anyway? Used when blood_valid is FALSE.
Expand Down

0 comments on commit 15e48bb

Please sign in to comment.