Skip to content

Commit

Permalink
reviewfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
InsaneRed committed Dec 15, 2023
1 parent e7e8eee commit b3676ec
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@
last_special = world.time + 10

var/displaytime = max(1, round(breakouttime / 600)) //Minutes
to_chat(src, SPAN_WARNING("We attempt to remove [legcuffed]. (This will take around [displaytime] minute(s) and we must to stand still)"))
to_chat(src, SPAN_WARNING("We attempt to remove [legcuffed]. (This will take around [displaytime] minute(s) and we must stand still)"))
for(var/mob/O in viewers(src))
O.show_message(SPAN_DANGER("<B>[usr] attempts to remove [legcuffed]!</B>"), SHOW_MESSAGE_VISIBLE)
if(!do_after(src, breakouttime, INTERRUPT_NO_NEEDHAND^INTERRUPT_RESIST, BUSY_ICON_HOSTILE))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
var/dissolvability = T.can_be_dissolved()
switch(dissolvability)
if(0)
to_chat(src, SPAN_WARNING("wE cannot dissolve [T]."))
to_chat(src, SPAN_WARNING("We cannot dissolve [T]."))
return
if(1)
wait_time = 50
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
if(!mine.empowered)
mine.empowered = TRUE
mine.button.overlays += "+empowered"
to_chat(xeno, SPAN_XENODANGER("We tap in our reserves to prepare a stronger [mine.name]!"))
to_chat(xeno, SPAN_XENODANGER("We tap into our reserves to prepare a stronger [mine.name]!"))

apply_cooldown()
return ..()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

used_burrow = TRUE

to_chat(src, SPAN_XENOWARNING("We begin burrowing yourself into the ground."))
to_chat(src, SPAN_XENOWARNING("We begin burrowing ourselves into the ground."))
if(!do_after(src, 1.5 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE))
addtimer(CALLBACK(src, PROC_REF(do_burrow_cooldown)), (caste ? caste.burrow_cooldown : 5 SECONDS))
return
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@
UnregisterSignal(owner, COMSIG_XENO_TAKE_DAMAGE)

damage_accumulated = 0
to_chat(owner, SPAN_XENONOTICE("We stop taking inoncoming damage."))
to_chat(owner, SPAN_XENONOTICE("We stop taking incoming damage."))
owner.remove_filter("steelcrest_enraging")

/datum/action/xeno_action/onclick/soak/proc/enraged()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@

var/turf/T = get_turf(X)
if(!istype(T))
to_chat(X, SPAN_XENOWARNING("You We't do that here."))
to_chat(X, SPAN_XENOWARNING("We can't do that here."))
return
var/area/AR = get_area(T)
if(istype(AR,/area/shuttle/drop1/lz1) || istype(AR,/area/shuttle/drop2/lz2) || SSinterior.in_interior(owner))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
if (!check_and_use_plasma_owner())
return

xeno.visible_message(SPAN_XENOWARNING("[xeno] fires a burst of bone chips at [affected_atom]!"), SPAN_XENOWARNING("We fire a burst of our bone chips at [affected_atom]!"))
xeno.visible_message(SPAN_XENOWARNING("[xeno] fires a burst of bone chips at [affected_atom]!"), SPAN_XENOWARNING("We fire a burst of bone chips at [affected_atom]!"))

var/turf/target = locate(affected_atom.x, affected_atom.y, affected_atom.z)
var/obj/projectile/projectile = new /obj/projectile(xeno.loc, create_cause_data(initial(xeno.caste_type), xeno))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,14 +160,14 @@
return // We clicked the same ability in a very short time
if(xeno.client && xeno.client.prefs && xeno.client.prefs.toggle_prefs & TOGGLE_ABILITY_DEACTIVATION_OFF)
return
to_chat(xeno, "We will no longer use [ability_name] with \
to_chat(xeno, "You will no longer use [ability_name] with \
[xeno.client && xeno.client.prefs && xeno.client.prefs.toggle_prefs & TOGGLE_MIDDLE_MOUSE_CLICK ? "middle-click" : "shift-click"].")
button.icon_state = "template"
xeno.selected_ability = null
if(charge_time)
stop_charging_ability()
else
to_chat(xeno, "We will now use [ability_name] with \
to_chat(xeno, "You will now use [ability_name] with \
[xeno.client && xeno.client.prefs && xeno.client.prefs.toggle_prefs & TOGGLE_MIDDLE_MOUSE_CLICK ? "middle-click" : "shift-click"].")
if(xeno.selected_ability)
xeno.selected_ability.action_deselect()
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/xenomorph/life.dm
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ Make sure their actual health updates immediately.*/
plasma_stored = 0
if(current_aura)
current_aura = null
to_chat(src, SPAN_WARNING("We have run out of pheromones and stopped emitting pheromones."))
to_chat(src, SPAN_WARNING("We have run out of plasma and stopped emitting pheromones."))

for(var/X in actions)
var/datum/action/A = X
Expand Down

0 comments on commit b3676ec

Please sign in to comment.