From 7f8d171825e235d6a7a55063345c557984f9e7fa Mon Sep 17 00:00:00 2001 From: Bauke Date: Sun, 29 Jan 2023 14:33:48 +0100 Subject: [PATCH] Add the _9xtYCGWtn4 video. --- source/video/2023/2023-01-29-_9xtYCGWtn4.md | 13 +++++++++++++ source/video/mod.rs | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 source/video/2023/2023-01-29-_9xtYCGWtn4.md diff --git a/source/video/2023/2023-01-29-_9xtYCGWtn4.md b/source/video/2023/2023-01-29-_9xtYCGWtn4.md new file mode 100644 index 0000000..7c87227 --- /dev/null +++ b/source/video/2023/2023-01-29-_9xtYCGWtn4.md @@ -0,0 +1,13 @@ +---toml +id = "_9xtYCGWtn4" +page_title = "No HUD Hazard 5 Mining Expedition" +tags = ["Deep Rock Galactic", "No HUD"] +--- + +## Description + +Trying something new with Deep Rock Galactic: playing without the HUD. Can't see how much health I have, how far off I'm from completing the mission objective, the terrain scanner no longer works and even where the drop pod will land is a mystery. + +## Build + +The build I used is available on [Karl.gg](https://karl.gg/preview/21636#/). Try it out yourself! diff --git a/source/video/mod.rs b/source/video/mod.rs index 0584aa4..eace324 100644 --- a/source/video/mod.rs +++ b/source/video/mod.rs @@ -59,7 +59,7 @@ pub fn write_all(public_dir: &Path) -> Result<()> { let video_datas = { let mut data = vec![]; - for dir in ["2022"] { + for dir in ["2022", "2023"] { for file in fs::read_dir(format!("source/video/{dir}"))? { let file_path = file?.path(); if file_path.extension().unwrap() != "md" {