fix(department_accounts): Fixes research department bank not generating (#15870)

* NOTE: I wanted to change all of the strings to use __defines macros like DEPARTMENT_RESEARCH to avoid the bug happening again. Unfortunately, due to the hiearchy of when stuff is called, it did not work. It might be a good idea to refactor code down the line so we don't have this issue again.

Research department is called "Research" not "Science". This broke at least one code instance that compared the macro DEPARTMENT_RESEARCH with "science". There's probably
This commit is contained in:
Runa Dacino
2024-03-26 05:59:36 +10:00
committed by GitHub
parent 037a99294e
commit 312e148443
+1 -1
View File
@@ -177,7 +177,7 @@ var/max_explosion_range = 14
// Announcer intercom, because too much stuff creates an intercom for one message then hard del()s it.
var/global/obj/item/device/radio/intercom/omni/global_announcer = new /obj/item/device/radio/intercom/omni(null)
var/list/station_departments = list("Command", "Medical", "Engineering", "Science", "Security", "Cargo", "Exploration", "Civilian") //VOREStation Edit
var/list/station_departments = list("Command", "Medical", "Engineering", "Research", "Security", "Cargo", "Exploration", "Civilian") //VOREStation Edit
//Icons for in-game HUD glasses. Why don't we just share these a little bit?
var/static/icon/ingame_hud = icon('icons/mob/hud.dmi')