Factorio: remove FactorioClient executable (#4928)

This commit is contained in:
Fabian Dill
2025-05-02 15:59:27 +02:00
committed by GitHub
parent 6beaacb905
commit 1031fc4923
2 changed files with 1 additions and 13 deletions

View File

@@ -1,12 +0,0 @@
from __future__ import annotations
import ModuleUpdate
ModuleUpdate.update()
from worlds.factorio.Client import check_stdin, launch
import Utils
if __name__ == "__main__":
Utils.init_logging("FactorioClient", exception_logger="Client")
check_stdin()
launch()

View File

@@ -27,7 +27,7 @@ def launch_client():
launch_component(launch, name="FactorioClient")
components.append(Component("Factorio Client", "FactorioClient", func=launch_client, component_type=Type.CLIENT))
components.append(Component("Factorio Client", func=launch_client, component_type=Type.CLIENT))
class FactorioSettings(settings.Group):