mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-27 06:54:18 +01:00
Description fix, blood pack addition and fixed floating text (#13536)
This commit is contained in:
@@ -163,12 +163,12 @@
|
||||
if (REAGENT_VOLUME(reagents, /decl/reagent/blood) && name != "empty blood pack") //Stops people mucking with bloodpacks that are filled
|
||||
to_chat(usr, "<span class='notice'>You can't relabel [name] until it is empty!</span>")
|
||||
return
|
||||
var/blood_name = input(usr, "What blood type would you like to label it as?", "Blood Types") in list("A+", "A-", "B+", "B-", "O+", "O-", "AB+", "AB-", "Cancel")
|
||||
var/blood_name = input(usr, "What blood type would you like to label it as?", "Blood Types") in list("A+", "A-", "B+", "B-", "O+", "O-", "AB+", "AB-", "Saline Plus", "Cancel")
|
||||
if (blood_name == "Cancel") return
|
||||
var/obj/item/i = usr.get_active_hand()
|
||||
if (!i.ispen() || !in_range(user, src)) return //Checks to see if pen is still held or bloodback is in range
|
||||
name = "blood pack [blood_name]"
|
||||
desc = "Contains blood used for transfusion."
|
||||
desc = "Contains fluids used for transfusions."
|
||||
to_chat(usr, "<span class='notice'>You label the blood pack as [blood_name].</span>")
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user