Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 2463dbc

Browse files
authored
atleast (#20064)
1 parent c87a646 commit 2463dbc

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

code/modules/antagonists/bloodsuckers/bloodsucker_objectives.dm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@
355355

356356
/datum/objective/bloodsucker/frenzy/update_explanation_text()
357357
. = ..()
358-
explanation_text = "Enter Frenzy [target_amount == 1 ? "atleast once" : "2 times"] without succumbing to Final Death."
358+
explanation_text = "Enter Frenzy [target_amount == 1 ? "at least once" : "2 times"] without succumbing to Final Death."
359359

360360
/datum/objective/bloodsucker/frenzy/check_completion()
361361
var/datum/antagonist/bloodsucker/bloodsuckerdatum = owner.current.mind.has_antag_datum(/datum/antagonist/bloodsucker)
@@ -374,7 +374,7 @@
374374

375375
/datum/objective/bloodsucker/hierarchy/update_explanation_text()
376376
. = ..()
377-
explanation_text = "Ascend [target_amount == 1 ? "atleast 1 ability" : "2 abilities"] using a Resting Place altar."
377+
explanation_text = "Ascend [target_amount == 1 ? "at least 1 ability" : "2 abilities"] using a Resting Place altar."
378378

379379
/datum/objective/bloodsucker/hierarchy/check_completion()
380380
var/datum/antagonist/bloodsucker/bloodsuckerdatum = owner.current.mind.has_antag_datum(/datum/antagonist/bloodsucker)
@@ -437,7 +437,7 @@
437437
target_amount = rand(2, 3)
438438
..()
439439

440-
// EXPLANATION
440+
// EXPLANATION
441441
/datum/objective/bloodsucker/leader/update_explanation_text()
442442
. = ..()
443443
explanation_text = "Convert [target_amount] mortal beings into your vassals."

code/modules/antagonists/bloodsuckers/powers/gangrel.dm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
power.Grant(gb)
108108
playsound(gb.loc, 'sound/items/toysqueak1.ogg', 50, TRUE)
109109
return //early to not mess with vampire organs proc
110-
110+
111111
bloodsuckerdatum.heal_vampire_organs() //regives you the stuff
112112

113113
/datum/action/cooldown/bloodsucker/gangrel/transform_back
@@ -606,7 +606,7 @@
606606

607607
/obj/item/clothing/shoes/wolflegs
608608
name = "Wolf Legs"
609-
desc = "Atleast they make you go faster."
609+
desc = "At least they make you go faster."
610610
icon_state = "legs"
611611
item_state = "legs"
612612
icon = 'icons/mob/actions/actions_gangrel_bloodsucker.dmi'
@@ -616,7 +616,7 @@
616616

617617
/obj/item/clothing/shoes/xeno_wraps/wolfdigilegs
618618
name = "Wolf Legs"
619-
desc = "Atleast they make you go faster. Oh wait you probably didn't mind anyways..."
619+
desc = "At least they make you go faster. Oh wait you probably didn't mind anyways..."
620620
icon_state = "digilegs"
621621
item_state = "digilegs"
622622
icon = 'icons/mob/actions/actions_gangrel_bloodsucker.dmi'

code/modules/antagonists/bloodsuckers/structures/bloodsucker_crypt.dm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@
387387
if(bloodsuckerdatum.my_clan?.control_type >= BLOODSUCKER_CONTROL_METAL)
388388
if(metal)
389389
. += span_boldnotice("It currently contains [metal] metal to use in sculpting.")
390-
else
390+
else
391391
return ..()
392392

393393
/obj/structure/bloodsucker/moldingstone/bolt()
@@ -444,7 +444,7 @@
444444
artist.balloon_alert(artist, "ruined!")
445445
metal -= rand(5, 10)
446446
update_appearance(UPDATE_ICON)
447-
447+
448448
return
449449
artist.balloon_alert(artist, "done, a masterpiece!")
450450
new what_type(get_turf(src))
@@ -1080,7 +1080,7 @@
10801080
to_chat(user, span_warning("You need to mutilate [target] into a husk first before doing this."))
10811081
return
10821082
if(meat_points < meat_cost)
1083-
to_chat(user, span_warning("You need atleast [meat_cost - meat_points] more meat points to do this."))
1083+
to_chat(user, span_warning("You need at least [meat_cost - meat_points] more meat points to do this."))
10841084
return
10851085
if(!do_mob(user, target, 1 SECONDS))
10861086
return
@@ -1100,7 +1100,7 @@
11001100
to_chat(user, span_warning("You need to mutilate [target] into a husk first before doing this."))
11011101
return
11021102
if(meat_points < meat_cost)
1103-
to_chat(user, span_warning("You need atleast [meat_cost - meat_points] more meat points to do this."))
1103+
to_chat(user, span_warning("You need at least [meat_cost - meat_points] more meat points to do this."))
11041104
return
11051105
if(!do_mob(user, target, 1 SECONDS))
11061106
return
@@ -1119,7 +1119,7 @@
11191119
to_chat(user, span_warning("You need to mutilate [target] into a husk first before doing this."))
11201120
return
11211121
if(meat_points < meat_cost)
1122-
to_chat(user, span_warning("You need atleast [meat_cost - meat_points] more meat points to do this."))
1122+
to_chat(user, span_warning("You need at least [meat_cost - meat_points] more meat points to do this."))
11231123
return
11241124
if(!do_mob(user, target, 1 SECONDS))
11251125
return

0 commit comments

Comments
 (0)