diff --git a/maplestation.dme b/maplestation.dme index ef5ca2a92e40..8b0b19bcd08c 100644 --- a/maplestation.dme +++ b/maplestation.dme @@ -5721,4 +5721,5 @@ #include "maplestation_modules\story_content\ritz_equipment\code\ritzclothing.dm" #include "maplestation_modules\story_content\story_posters\code\contraband.dm" #include "maplestation_modules\story_content\stranger_equipment\code\strangerclothing.dm" +#include "maplestation_modules\temp_changes\bottles\bottlecode.dm" // END_INCLUDE diff --git a/maplestation_modules/temp_changes/bottles/bottle.dmi b/maplestation_modules/temp_changes/bottles/bottle.dmi new file mode 100644 index 000000000000..877f78bdc83a Binary files /dev/null and b/maplestation_modules/temp_changes/bottles/bottle.dmi differ diff --git a/maplestation_modules/temp_changes/bottles/bottlecode.dm b/maplestation_modules/temp_changes/bottles/bottlecode.dm new file mode 100644 index 000000000000..ca0ad692acf6 --- /dev/null +++ b/maplestation_modules/temp_changes/bottles/bottlecode.dm @@ -0,0 +1,10 @@ +/// Fixes the weird fill icons bottles have at the moment by just overriding them. + +/obj/item/reagent_containers/cup/glass/bottle + var/maple_icon = 'maplestation_modules/temp_changes/bottles/bottle.dmi' + +/obj/item/reagent_containers/cup/glass/bottle/Initialize(mapload, vol) + . = ..() + if(src.type == /obj/item/reagent_containers/cup/glass/bottle || src.type == /obj/item/reagent_containers/cup/glass/bottle/small) + icon = maple_icon + fill_icon = maple_icon