Skip to content

Commit

Permalink
Fixing erroneous find and replace TASTE_DATA.
Browse files Browse the repository at this point in the history
  • Loading branch information
MistakeNot4892 committed Aug 30, 2023
1 parent c29c31f commit faad7bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/modules/projectiles/projectile/arc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
var/obj/effect/vfx/water/splash = new(T)
splash.create_reagents(15)
splash.reagents.add_reagent("stomacid", 5)
splash.reagents.add_reagent("blood", 10,TASTE_DATA(list("blood_colour" = "#ec4940")))
splash.reagents.add_reagent("blood", 10, list("blood_colour" = "#ec4940"))
splash.set_color()

splash.set_up(F, 2, 3)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/reagents/reagent_containers/blood_pack.dm
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
if(blood_type != null)
label_text = "[blood_type]"
update_iv_label()
reagents.add_reagent(reag_id, 200, TASTE_DATA(list("donor"=null,"viruses"=null,"blood_DNA"=null,"blood_type"=blood_type,"resistances"=null,"trace_chem"=null)))
reagents.add_reagent(reag_id, 200, list("donor"=null,"viruses"=null,"blood_DNA"=null,"blood_type"=blood_type,"resistances"=null,"trace_chem"=null))
update_icon()

/obj/item/reagent_containers/blood/on_reagent_change()
Expand Down
2 changes: 1 addition & 1 deletion code/modules/xenoarcheaology/effects/sweating_reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
spawn()
var/obj/effect/vfx/water/splash = new(T)
splash.create_reagents(15)
splash.reagents.add_reagent("blood", 10, TASTE_DATA(list("blood_colour" = effect_color)))
splash.reagents.add_reagent("blood", 10, list("blood_colour" = effect_color))
splash.set_color()

splash.set_up(T, 2, 3)
Expand Down

0 comments on commit faad7bb

Please sign in to comment.