[MIRROR] Fixes typo 'transfered', olive oil reaction repath [MDB IGNORE] (#23469)

* Fixes typo 'transfered', olive oil reaction repath

* Modular

* Update condiment.dm

* Update recipes_guide.dm

* Update _cup.dm

---------

Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>
This commit is contained in:
SkyratBot
2023-09-04 08:49:33 -04:00
committed by GitHub
co-authored by Bloop
parent 11133f4e51
commit 87bfa7a61a
78 changed files with 152 additions and 152 deletions
+1 -1
View File
@@ -58,7 +58,7 @@
return
var/built_attacker_message = replacetext(attacker_message, "%VICTIM", transfer_victim)
var/built_victim_message = replacetext(attacker_message, "%ATTACKER", transfer_attacker)
transfer_attacker.reagents?.trans_to(transfer_victim, transfer_attacker.reagents.total_volume, multiplier = 1, preserve_data = 1, no_react = 0, transfered_by = transfer_attacker)
transfer_attacker.reagents?.trans_to(transfer_victim, transfer_attacker.reagents.total_volume, multiplier = 1, preserve_data = 1, no_react = 0, transferred_by = transfer_attacker)
to_chat(transfer_attacker, built_attacker_message)
to_chat(transfer_victim, built_victim_message)
+2 -2
View File
@@ -3,7 +3,7 @@
/datum/element/dunkable
element_flags = ELEMENT_BESPOKE
argument_hash_start_idx = 2
var/dunk_amount // the amount of reagents that will be transfered from the container to the item on each click
var/dunk_amount // the amount of reagents that will be transferred from the container to the item on each click
/datum/element/dunkable/Attach(datum/target, amount_per_dunk)
. = ..()
@@ -28,7 +28,7 @@
to_chat(user, span_warning("[container] is unable to be dunked in!"))
return COMPONENT_AFTERATTACK_PROCESSED_ITEM
var/obj/item/I = source // the item that has the dunkable element
if(container.reagents.trans_to(I, dunk_amount, transfered_by = user)) //if reagents were transfered, show the message
if(container.reagents.trans_to(I, dunk_amount, transferred_by = user)) //if reagents were transferred, show the message
to_chat(user, span_notice("You dunk \the [I] into \the [container]."))
return COMPONENT_AFTERATTACK_PROCESSED_ITEM
if(!container.reagents.total_volume)