From ca066648dd96b0534d700ef0573e1c65fbafb190 Mon Sep 17 00:00:00 2001 From: Joshie <41561534+furrycactus@users.noreply.github.com> Date: Wed, 26 May 2021 20:47:56 +1000 Subject: [PATCH] Gardening and Janitor QoL Buff (#11947) --- code/game/objects/structures/mop_bucket.dm | 2 +- .../reagents/reagent_containers/glass.dm | 4 +- html/changelogs/furrycactus - buckets.yml | 42 +++++++++++++++++++ 3 files changed, 45 insertions(+), 3 deletions(-) create mode 100644 html/changelogs/furrycactus - buckets.yml diff --git a/code/game/objects/structures/mop_bucket.dm b/code/game/objects/structures/mop_bucket.dm index 9f0148e8fe1..ea3818a5216 100644 --- a/code/game/objects/structures/mop_bucket.dm +++ b/code/game/objects/structures/mop_bucket.dm @@ -7,7 +7,7 @@ w_class = ITEMSIZE_NORMAL flags = OPENCONTAINER var/amount_per_transfer_from_this = 5 //shit I dunno, adding this so syringes stop runtime erroring. --NeoFite - var/bucketsize = 360 //about 3x the size relative to a regular bucket. + var/bucketsize = 600 //about 2x the size relative to a regular bucket. /obj/structure/mopbucket/Initialize() . = ..() diff --git a/code/modules/reagents/reagent_containers/glass.dm b/code/modules/reagents/reagent_containers/glass.dm index 6f2ebc200d0..4fb5f57e81f 100644 --- a/code/modules/reagents/reagent_containers/glass.dm +++ b/code/modules/reagents/reagent_containers/glass.dm @@ -214,8 +214,8 @@ matter = list(DEFAULT_WALL_MATERIAL = 200) w_class = ITEMSIZE_NORMAL amount_per_transfer_from_this = 120 - possible_transfer_amounts = list(10,20,30,60,120) - volume = 120 + possible_transfer_amounts = list(5,10,15,25,30,50,60,100,120,250,300) + volume = 300 flags = OPENCONTAINER unacidable = 0 drop_sound = 'sound/items/drop/helm.ogg' diff --git a/html/changelogs/furrycactus - buckets.yml b/html/changelogs/furrycactus - buckets.yml new file mode 100644 index 00000000000..adbc4eb9e1e --- /dev/null +++ b/html/changelogs/furrycactus - buckets.yml @@ -0,0 +1,42 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: Furrycactus + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Blue plastic buckets and wooden buckets can now hold 300 units, up from 120 units (the size of a large beaker)." + - rscadd: "Yellow mop buckets can how hold 600 units, up from 360 units (2x the size of regular buckets)."