Skip to content

Commit

Permalink
bot
Browse files Browse the repository at this point in the history
tle
  • Loading branch information
Wallemations committed Oct 6, 2023
1 parent f29acce commit 681e892
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions maplestation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -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
Binary file not shown.
10 changes: 10 additions & 0 deletions maplestation_modules/temp_changes/bottles/bottlecode.dm
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 681e892

Please sign in to comment.