Skip to content

Commit

Permalink
fix pillbottle fuckies (#566)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kapu1178 authored Sep 8, 2023
1 parent 388fb70 commit c9d3573
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions code/game/objects/items/storage/medkit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -369,39 +369,39 @@
desc = "Contains pills used to reduce radiation damage."

/obj/item/storage/pill_bottle/potassiodide/PopulateContents()
for(var/i in 1 to 3)
for(var/i in 1 to 7)
new /obj/item/reagent_containers/pill/potassiodide(src)

/obj/item/storage/pill_bottle/bicaridine
name = "bottle of bicaridine pills"
desc = "Contains pills used to treat brute damage."

/obj/item/storage/pill_bottle/bicaridine/PopulateContents()
for(var/i in 1 to 4)
for(var/i in 1 to 7)
new /obj/item/reagent_containers/pill/bicaridine(src)

/obj/item/storage/pill_bottle/meralyne
name = "bottle of meralyne pills"
desc = "Contains pills used to treat brute damage."

/obj/item/storage/pill_bottle/meralyne/PopulateContents()
for(var/i in 1 to 4)
for(var/i in 1 to 7)
new /obj/item/reagent_containers/pill/meralyne(src)

/obj/item/storage/pill_bottle/dermaline
name = "bottle of dermaline pills"
desc = "Used to treat second and third degree burns."

/obj/item/storage/pill_bottle/meralyne/PopulateContents()
for(var/i in 1 to 4)
/obj/item/storage/pill_bottle/dermaline/PopulateContents()
for(var/i in 1 to 7)
new /obj/item/reagent_containers/pill/dermaline(src)

/obj/item/storage/pill_bottle/iron
name = "bottle of iron pills"
desc = "Contains pills used to reduce blood loss slowly.The tag in the bottle states 'Only take one each five minutes'."

/obj/item/storage/pill_bottle/iron/PopulateContents()
for(var/i in 1 to 4)
for(var/i in 1 to 7)
new /obj/item/reagent_containers/pill/iron(src)

/obj/item/storage/pill_bottle/alkysine
Expand Down

0 comments on commit c9d3573

Please sign in to comment.