mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-19 20:15:47 +01:00
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:
@@ -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()]
|
||||
|
||||
Reference in New Issue
Block a user