diff --git a/code/modules/reagents/reagent_containers/food/drinks.dm b/code/modules/reagents/reagent_containers/food/drinks.dm index 46a9d43b9df..589ae649256 100644 --- a/code/modules/reagents/reagent_containers/food/drinks.dm +++ b/code/modules/reagents/reagent_containers/food/drinks.dm @@ -23,7 +23,7 @@ var/fillevel = gulp_size if(!R.total_volume || !R) - user << " None of [src] left, oh no!" + user << " None of [src] left, oh no!" return 0 if(M == user) @@ -35,9 +35,9 @@ user << "Where do you intend to put \the [src]? You don't have a mouth!" return else - M << " You pour a bit of liquid from [src] into your connection port." + M << " You pour a bit of liquid from [src] into your connection port." else - M << " You swallow a gulp of [src]." + M << " You swallow a gulp of [src]." if(reagents.total_volume) reagents.reaction(M, INGEST) spawn(0) @@ -53,10 +53,10 @@ return for(var/mob/O in viewers(world.view, user)) - O.show_message(" [user] attempts to feed [M] [src].", 1) + O.show_message(" [user] attempts to feed [M] [src].", 1) if(!do_mob(user, M)) return for(var/mob/O in viewers(world.view, user)) - O.show_message(" [user] feeds [M] [src].", 1) + O.show_message(" [user] feeds [M] [src].", 1) M.attack_log += text("\[[time_stamp()]\] Has been fed [src.name] by [key_name(user)] Reagents: [reagentlist(src)]") user.attack_log += text("\[[time_stamp()]\] Fed [M.name] by [key_name(M)] Reagents: [reagentlist(src)]") @@ -98,23 +98,23 @@ if(istype(target, /obj/structure/reagent_dispensers)) //A dispenser. Transfer FROM it TO us. if(!target.reagents.total_volume) - user << " [target] is empty." + user << " [target] is empty." return if(reagents.total_volume >= reagents.maximum_volume) - user << " [src] is full." + user << " [src] is full." return var/trans = target.reagents.trans_to(src, target:amount_per_transfer_from_this) - user << " You fill [src] with [trans] units of the contents of [target]." + user << " You fill [src] with [trans] units of the contents of [target]." else if(target.is_open_container()) //Something like a glass. Player probably wants to transfer TO it. if(!reagents.total_volume) - user << " [src] is empty." + user << " [src] is empty." return if(target.reagents.total_volume >= target.reagents.maximum_volume) - user << " [target] is full." + user << " [target] is full." return @@ -126,7 +126,7 @@ refillName = reagents.get_master_reagent_name() var/trans = src.reagents.trans_to(target, amount_per_transfer_from_this) - user << " You transfer [trans] units of the solution to [target]." + user << " You transfer [trans] units of the solution to [target]." if(isrobot(user)) //Cyborg modules that include drinks automatically refill themselves, but drain the borg's cell if(refill in drinks) // Only synthesize drinks @@ -155,15 +155,15 @@ if(!..(user, 1)) return if(!reagents || reagents.total_volume==0) - user << " \The [src] is empty!" + user << " \The [src] is empty!" else if (reagents.total_volume<=src.volume/4) - user << " \The [src] is almost empty!" + user << " \The [src] is almost empty!" else if (reagents.total_volume<=src.volume*0.66) - user << " \The [src] is half full!" // We're all optimistic, right?! + user << " \The [src] is half full!" // We're all optimistic, right?! else if (reagents.total_volume<=src.volume*0.90) - user << " \The [src] is almost full!" + user << " \The [src] is almost full!" else - user << " \The [src] is full!" + user << " \The [src] is full!" //////////////////////////////////////////////////////////////////////////////// @@ -407,4 +407,4 @@ desc = "A flask with a Lithium Atom symbol on it." icon = 'icons/obj/custom_items.dmi' icon_state = "lithiumflask" - volume = 50 \ No newline at end of file + volume = 50