From 3beb305cdfe56a2a46c5246d2150dc50f16ac61b Mon Sep 17 00:00:00 2001 From: Bauke Date: Mon, 30 Jan 2023 12:43:46 +0100 Subject: [PATCH] Add Brighter Objects to the DRG mods filter. --- source/video/filters.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/source/video/filters.rs b/source/video/filters.rs index 138f6cd..6e96f93 100644 --- a/source/video/filters.rs +++ b/source/video/filters.rs @@ -7,6 +7,7 @@ Get the DRG mod link and title from a given ID. */ pub fn drg_mod(mod_id: &str) -> askama::Result<(String, &str)> { let mods = std::collections::HashMap::<_, _>::from_iter([ + ("brighter-objects", "Brighter Objects"), ("drglib", "DRGLib"), ("simplemissiontimer", "SimpleMissionTimer"), ]);