From 95f696c04f986909c57deade47406dfa731369e9 Mon Sep 17 00:00:00 2001 From: Duck <31627079+duckboycool@users.noreply.github.com> Date: Sun, 29 Mar 2026 16:19:54 -0600 Subject: [PATCH] WebHost: Remove space before comma separators in tutorial authors (#5999) * Remove space before comma * Factorio authors update * Simplify template --- WebHostLib/templates/tutorialLanding.html | 6 +----- worlds/factorio/__init__.py | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/WebHostLib/templates/tutorialLanding.html b/WebHostLib/templates/tutorialLanding.html index a96da883b6..ac7f24f95a 100644 --- a/WebHostLib/templates/tutorialLanding.html +++ b/WebHostLib/templates/tutorialLanding.html @@ -20,11 +20,7 @@ {% for file_name, file_data in tutorial_data.files.items() %}
  • {{ file_data.language }} - by - {% for author in file_data.authors %} - {{ author }} - {% if not loop.last %}, {% endif %} - {% endfor %} + by {{ file_data.authors | join(", ") }}
  • {% endfor %} diff --git a/worlds/factorio/__init__.py b/worlds/factorio/__init__.py index ceb758669d..4483cf0238 100644 --- a/worlds/factorio/__init__.py +++ b/worlds/factorio/__init__.py @@ -37,7 +37,7 @@ class FactorioWeb(WebWorld): "English", "setup_en.md", "setup/en", - ["Berserker, Farrak Kilhn"] + ["Berserker", "Farrak Kilhn"] )] option_groups = option_groups