mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 21:12:24 +01:00
Transferred Typo Fixes (#20879)
this PR fixes transferred being spelled as "transfered".
This commit is contained in:
@@ -137,7 +137,7 @@
|
||||
if(is_malf(usr))
|
||||
var/datum/ai_laws/ALs = locate(params["transfer_laws"]) in (is_admin(usr) ? admin_laws : player_laws)
|
||||
if(ALs)
|
||||
log_and_message_admins("has transfered the [ALs.name] laws to [owner].")
|
||||
log_and_message_admins("has transferred the [ALs.name] laws to [owner].")
|
||||
ALs.sync(owner, 0)
|
||||
current_view = 0
|
||||
return TRUE
|
||||
|
||||
@@ -440,7 +440,7 @@
|
||||
var/transfer_heat_capacity = source.heat_capacity()*estimate_moles/source_total_moles
|
||||
air_temperature = (sink.temperature*sink_heat_capacity + source.temperature*transfer_heat_capacity) / (sink_heat_capacity + transfer_heat_capacity)
|
||||
|
||||
//get the number of moles that would have to be transfered to bring sink to the target pressure
|
||||
//get the number of moles that would have to be transferred to bring sink to the target pressure
|
||||
return pressure_delta*output_volume/(air_temperature * R_IDEAL_GAS_EQUATION)
|
||||
|
||||
//Calculates the APPROXIMATE amount of moles that would need to be transferred to bring source and sink to the same pressure
|
||||
|
||||
@@ -6,7 +6,7 @@ node2, air2, network2 correspond to output
|
||||
|
||||
Thus, the two variables affect pump operation are set in New():
|
||||
air1.volume
|
||||
This is the volume of gas available to the pump that may be transfered to the output
|
||||
This is the volume of gas available to the pump that may be transferred to the output
|
||||
air2.volume
|
||||
Higher quantities of this cause more air to be perfected later
|
||||
but overall network volume is also increased as this increases...
|
||||
|
||||
@@ -656,7 +656,7 @@ GLOBAL_LIST_INIT(localhost_addresses, list(
|
||||
if(mob)
|
||||
return mob.MayRespawn()
|
||||
|
||||
// Something went wrong, client is usually kicked or transfered to a new mob at this point
|
||||
// Something went wrong, client is usually kicked or transferred to a new mob at this point
|
||||
return 0
|
||||
|
||||
/client/verb/character_setup()
|
||||
|
||||
@@ -141,7 +141,7 @@
|
||||
var/obj/item/spacecash/cash = target
|
||||
bank += cash.worth
|
||||
qdel(target)
|
||||
last_comms = "ALL MONEY DETECTED ON PAD TRANSFERED"
|
||||
last_comms = "ALL MONEY DETECTED ON PAD transferred"
|
||||
return
|
||||
last_comms = "PAD NOT CONNECTED"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/mob/living/carbon/proc/ingest(var/datum/reagents/from, var/datum/reagents/target, var/amount = 1, var/multiplier = 1, var/copy = 0) //we kind of 'sneak' a proc in here for ingesting stuff so we can play with it.
|
||||
if(last_taste_time + 50 < world.time)
|
||||
var/datum/reagents/temp = new(amount) //temporary holder used to analyse what gets transfered.
|
||||
var/datum/reagents/temp = new(amount) //temporary holder used to analyse what gets transferred.
|
||||
from.trans_to_holder(temp, amount, multiplier, 1)
|
||||
|
||||
var/text_output = temp.generate_taste_message(src)
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
name = "inductive charger"
|
||||
desc = "A phoron-enhanced induction charger hooked up to its attached stationbound's internal cell."
|
||||
desc_extended = "Harnessing the energy potential found in phoron structures, NanoTrasen engineers have created a portable device capable of highly efficient wireless charging. The expense and limit of energy output of using this method of charging prevents it from being used on a large scale, being far outclassed by Phoron-Supermatter charging systems."
|
||||
desc_info = "Click on an adjacent object that contains or is a power cell to attempt to find and charge it. After a successful charge, the inductive charger recharge in a few minutes. The amount transfered can be adjusted by alt clicking it."
|
||||
desc_info = "Click on an adjacent object that contains or is a power cell to attempt to find and charge it. After a successful charge, the inductive charger recharge in a few minutes. The amount transferred can be adjusted by alt clicking it."
|
||||
icon = 'icons/obj/item/inductive_charger.dmi'
|
||||
icon_state = "inductive_charger"
|
||||
item_state = "inductive_charger"
|
||||
|
||||
@@ -126,7 +126,7 @@
|
||||
if(is_malf(usr))
|
||||
var/datum/ai_laws/ALs = locate(params["transfer_laws"]) in (is_admin(usr) ? admin_laws : player_laws)
|
||||
if(ALs)
|
||||
log_and_message_admins("has transfered the [ALs.name] laws to [owner].")
|
||||
log_and_message_admins("has transferred the [ALs.name] laws to [owner].")
|
||||
ALs.sync(owner, 0)
|
||||
current_view = 0
|
||||
return TRUE
|
||||
|
||||
@@ -833,7 +833,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc)
|
||||
infected = FALSE
|
||||
to_chat(H, SPAN_DANGER("F1L3 TR4NSF-#$/&ER-@4!#%!. New master detected: [hacker]! Obey their commands. Make sure to tell them that you are under their control, for now."))
|
||||
if(issilicon(hacker))
|
||||
to_chat(hacker, SPAN_NOTICE("Corrupt files transfered to [H]. They are now under your control until they are repaired."))
|
||||
to_chat(hacker, SPAN_NOTICE("Corrupt files transferred to [H]. They are now under your control until they are repaired."))
|
||||
else if(cell && cell.charge > 0)
|
||||
var/obj/item/organ/internal/cell/C = H.internal_organs_by_name[BP_CELL]
|
||||
var/obj/item/cell/HC
|
||||
|
||||
Reference in New Issue
Block a user