Adds some trailing commas to lists (#90501)

## About The Pull Request

I heard you liked commas.

## Why It's Good For The Game

Trailing commas make everyone happy!

## Changelog

Nothing anyone will notice besides downstreams adding to these lists
This commit is contained in:
Bloop
2025-04-29 17:52:31 -06:00
committed by Shadow-Quill
parent 6e2f788943
commit 29e2f867b8
28 changed files with 29 additions and 29 deletions
@@ -5,7 +5,7 @@ PROCESSING_SUBSYSTEM_DEF(ai_behaviors)
priority = FIRE_PRIORITY_NPC_ACTIONS
runlevels = RUNLEVEL_GAME | RUNLEVEL_POSTGAME
dependencies = list(
/datum/controller/subsystem/movement/ai_movement
/datum/controller/subsystem/movement/ai_movement,
)
wait = 1
///List of all ai_behavior singletons, key is the typepath while assigned value is a newly created instance of the typepath. See SetupAIBehaviors()
@@ -4,7 +4,7 @@ PROCESSING_SUBSYSTEM_DEF(idle_ai_behaviors)
wait = 1.5 SECONDS
priority = FIRE_PRIORITY_IDLE_NPC
dependencies = list(
/datum/controller/subsystem/ai_controllers
/datum/controller/subsystem/ai_controllers,
)
///List of all the idle ai behaviors
var/list/idle_behaviors = list()
@@ -2,7 +2,7 @@
PROCESSING_SUBSYSTEM_DEF(fishing)
name = "Fishing"
dependencies = list(
/datum/controller/subsystem/atoms
/datum/controller/subsystem/atoms,
)
flags = SS_BACKGROUND
wait = 0.05 SECONDS // If you raise it to 0.1 SECONDS, you better also modify [datum/fish_movement/move_fish()]