Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _maps/_basemap.dm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "map_files\mining\Icemoon.dmm"
#include "map_files\mining\IcemoonUnderground.dmm"
#include "map_files\debug\runtimestation.dmm"
#include "map_files\YogsBox\Yogsbox.dmm"
#include "map_files\YogStation\Yogstation.dmm"
#include "map_files\YogsMeta\YogsMeta.dmm"
#include "map_files\YogsDelta\YogsDelta.dmm"
#include "map_files\EclipseStation\EclipseStation.dmm"
Expand Down
1 change: 0 additions & 1 deletion _maps/yogsbox.dm

This file was deleted.

1 change: 1 addition & 0 deletions _maps/yogstation.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#define FORCE_MAP "_maps/yogstation.json"
6 changes: 3 additions & 3 deletions _maps/yogsbox.json → _maps/yogstation.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"map_name": "YogsBox",
"map_path": "map_files/YogsBox",
"map_file": "YogsBox.dmm",
"map_name": "YogStation",
"map_path": "map_files/YogStation",
"map_file": "YogStation.dmm",
"shuttles": {
"cargo": "cargo_box",
"ferry": "ferry_fancy",
Expand Down
8 changes: 4 additions & 4 deletions code/datums/map_config.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/datum/map_config
// Metadata
var/config_filename = "_maps/yogsbox.json"
var/config_filename = "_maps/yogstation.json"
var/defaulted = TRUE // set to FALSE by LoadConfig() succeeding
// Config from maps.txt
var/config_max_users = 0
Expand All @@ -14,9 +14,9 @@
var/votable = FALSE

// Config actually from the JSON - should default to Box
var/map_name = "YogsBox"
var/map_path = "map_files/YogsBox"
var/map_file = "YogsBox.dmm"
var/map_name = "YogStation"
var/map_path = "map_files/YogStation"
var/map_file = "YogStation.dmm"

var/traits = null
var/space_ruin_levels = 7
Expand Down
2 changes: 1 addition & 1 deletion config/maps.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Format:
disabled (disables the map)
votable (is this map votable)

map yogsbox
map yogstation
voteweight 0.7
votable
endmap
Expand Down