Service QoL improvements & assorted changes (#21270)

Does a bunch of stuff relating to service. 

- Adds noticeboards to the bar, kitchen, hydroponics bay, and custodial
closet.
- Adds the microwave meals vendor to the commissary, and expands its
rear maintenance with a crate filled with various bags for all your
retail needs.
- Adds a paper bin to the kitchen.
- Replaces the high power pump feeding the trays in hydroponics with an
enabled regulator, so people don't overflood the pipes thinking higher
pressure is better + so it fills at roundstart. Also replaces all manual
valves with digital valves, so shipbounds can use hydroponics properly.
- Adds better lighting to the public garden so you can grow more stuff
there.
- Fixes a misplaced var with the bar tinted window.
- Makes some assorted layout tweaks to the bar to make the backroom a
more cohesive space, plus adding tinted windows between it and the
cafeteria. This is the most significant change, I'm curious to see if
it'll change much for the bartender to have vision over the cafeteria.
<img width="320" height="288" alt="image"
src="https://github.com/user-attachments/assets/bc8721c5-1f16-4753-8be1-bbef5173b9e1"
/>
This commit is contained in:
hazelrat
2025-09-04 20:07:57 +01:00
committed by GitHub
parent f9857ecb1f
commit eee7c2104b
3 changed files with 3947 additions and 3810 deletions
+14 -5
View File
@@ -236,6 +236,18 @@
var/frequency = 0
var/id = null
var/datum/radio_frequency/radio_connection
/// Determines if this digital valve should provide an admin message. Set to false if the valve is not relevant to admins.
var/admin_message = TRUE
/obj/machinery/atmospherics/valve/digital/no_admin_message
admin_message = FALSE
/obj/machinery/atmospherics/valve/digital/open
open = 1
icon_state = "map_valve1"
/obj/machinery/atmospherics/valve/digital/open/no_admin_message
admin_message = FALSE
/obj/machinery/atmospherics/valve/digital/attack_ai(mob/user as mob)
if(!ai_can_interact(user))
@@ -250,7 +262,8 @@
return
..()
log_and_message_admins("has [open ? SPAN_WARNING("OPENED") : "closed"] [name].", user)
if(admin_message)
log_and_message_admins("has [open ? SPAN_WARNING("OPENED") : "closed"] [name].", user)
/obj/machinery/atmospherics/valve/digital/AltClick(var/mob/abstract/ghost/observer/admin)
if (istype(admin))
@@ -264,10 +277,6 @@
log_and_message_admins("has [open ? "opened" : "closed"] [name].", admin)
/obj/machinery/atmospherics/valve/digital/open
open = 1
icon_state = "map_valve1"
/obj/machinery/atmospherics/valve/digital/power_change()
var/old_stat = stat
..()
+63
View File
@@ -0,0 +1,63 @@
################################
# 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
# - (fixes bugs)
# wip
# - (work in progress)
# qol
# - (quality of life)
# soundadd
# - (adds a sound)
# sounddel
# - (removes a sound)
# rscadd
# - (adds a feature)
# rscdel
# - (removes a feature)
# imageadd
# - (adds an image or sprite)
# imagedel
# - (removes an image or sprite)
# spellcheck
# - (fixes spelling or grammar)
# experiment
# - (experimental change)
# balance
# - (balance changes)
# code_imp
# - (misc internal code change)
# refactor
# - (refactors code)
# config
# - (makes a change to the config files)
# admin
# - (makes changes to administrator tools)
# server
# - (miscellaneous changes to server)
#################################
# Your name.
author: hazelmouse
# 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, this gets changed to [] after reading. Just remove the brackets when you add new shit.
# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog.
changes:
- rscadd: "Added noticeboards to the custodial closet, hydroponics, kitchen, and bar."
- rscadd: "Added the new microwave meals vendor to the commissary, and a supply of various bags in adjacent maintenance.."
- rscadd: "Implemented QoL improvements to hydroponics; shipbounds can now operate the valves correctly, and the piping is fed at roundstart."
- rscadd: "Implemented QoL improvements to the bar, including adding tinted windows between it and the cafeteria."
- bugfix: "The bar backroom's tinted window is no longer controlled from the library."
- bugfix: "The public garden no longer lacks sufficient lighting for most crops."
File diff suppressed because it is too large Load Diff