diff --git a/code/modules/reagents/reagent_containers/glass.dm b/code/modules/reagents/reagent_containers/glass.dm index f3ab287979..f77cd23a04 100644 --- a/code/modules/reagents/reagent_containers/glass.dm +++ b/code/modules/reagents/reagent_containers/glass.dm @@ -167,9 +167,6 @@ possible_transfer_amounts = list(0.1,0.5,0.75,1,2,3) volume = 3 -/obj/item/reagent_containers/glass/beaker/glass_dish/Initialize() - . = ..() - /obj/item/reagent_containers/glass/beaker/flask_small/flask_large name = "large flask" desc = "A large flask. It can hold up to 80 units. Unable to withstand reagents of an extreme pH." @@ -177,9 +174,6 @@ icon_state = "flasklarge" volume = 80 -/obj/item/reagent_containers/glass/beaker/flask_small/flask_large/Initialize() - . = ..() - /obj/item/reagent_containers/glass/beaker/flask_small name = "small flask" desc = "A small flask. It can hold up to 40 units. Unable to withstand reagents of an extreme pH." @@ -187,9 +181,6 @@ icon_state = "flasksmall" volume = 40 -/obj/item/reagent_containers/glass/beaker/flask_small/Initialize() - . = ..() - /obj/item/reagent_containers/glass/beaker/flaskspouty name = "flask with spout" desc = "A flask with a spout! It can hold up to 120 units. Unable to withstand reagents of an extreme pH." @@ -198,9 +189,6 @@ possible_transfer_amounts = list(1,2,3,4,5,10,15,20,25,30,50,100,120) volume = 120 -/obj/item/reagent_containers/glass/beaker/flaskspouty/Initialize() - . = ..() - /obj/item/reagent_containers/glass/beaker/large name = "large beaker" desc = "A large beaker. Can hold up to 120 units. Unable to withstand reagents of an extreme pH."