mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 06:00:16 +01:00
[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:
@@ -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)
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user