diff --git a/code/modules/hydroponics/seed.dm b/code/modules/hydroponics/seed.dm index 49a5e26526f..3da481a86f7 100644 --- a/code/modules/hydroponics/seed.dm +++ b/code/modules/hydroponics/seed.dm @@ -843,6 +843,6 @@ var/image/I = image(res.icon, "[get_trait(TRAIT_PLANT_ICON)]-[growth_stage]-leaves") I.color = get_trait(TRAIT_LEAVES_COLOUR) I.appearance_flags = RESET_COLOR - res.overlays += I + res.add_overlay(I) return res diff --git a/code/modules/hydroponics/spreading/spreading.dm b/code/modules/hydroponics/spreading/spreading.dm index 285fd2f2e17..eb7f116733a 100644 --- a/code/modules/hydroponics/spreading/spreading.dm +++ b/code/modules/hydroponics/spreading/spreading.dm @@ -100,7 +100,8 @@ name = seed.display_name max_health = round(seed.get_trait(TRAIT_ENDURANCE)/2) - if(seed.get_trait(TRAIT_SPREAD)==GROWTH_VINES) + if(seed.get_trait(TRAIT_SPREAD) == 2) + mouse_opacity = 2 max_growth = VINE_GROWTH_STAGES growth_threshold = max_health/VINE_GROWTH_STAGES growth_type = seed.get_growth_type() diff --git a/html/changelogs/RustingWithYou - visiblevines.yml b/html/changelogs/RustingWithYou - visiblevines.yml new file mode 100644 index 00000000000..f5572cccf77 --- /dev/null +++ b/html/changelogs/RustingWithYou - visiblevines.yml @@ -0,0 +1,41 @@ +################################ +# 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: RustingWithYou + +# 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: + - bugfix: "Fixes invisible vines."