Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
SandPoot committed Mar 30, 2023
2 parents be2ada9 + 03f15a2 commit 66a61e5
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 9 deletions.
23 changes: 23 additions & 0 deletions .tgs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This file is used by TGS (https://github.com/tgstation/tgstation-server) clients to quickly initialize a server instance for the codebase
# The format isn't documented anywhere but hopefully we never have to change it. If there are questions, contact the TGS maintainer Cyberboss/@Dominion#0444
version: 1
# The BYOND version to use (kept in sync with dependencies.sh by the "TGS Test Suite" CI job)
# Must be interpreted as a string, keep quoted
byond: "514.1556"
# Folders to create in "<instance_path>/Configuration/GameStaticFiles/"
static_files:
# Config directory should be static
- name: config
# This implies the folder should be pre-populated with contents from the repo
populate: true
# Data directory must be static
- name: data
# String dictionary. The value is the location of the file in the repo to upload to TGS. The key is the name of the file to upload to "<instance_path>/Configuration/EventScripts/"
# This one is for Linux hosted servers
linux_scripts:
PreCompile.sh: tools/tgs4_scripts/PreCompile.sh
# Same as above for Windows hosted servers
windows_scripts:
PreCompile.bat: tools/tgs_scripts/PreCompile.bat
# The security level the game should be run at
security: Trusted
8 changes: 0 additions & 8 deletions .tgs4.yml

This file was deleted.

3 changes: 2 additions & 1 deletion code/controllers/subsystem/mapping.dm
Original file line number Diff line number Diff line change
Expand Up @@ -501,8 +501,9 @@ GLOBAL_LIST_EMPTY(the_station_areas)

var/away_name
var/datum/space_level/away_level
possible_options += "Custom"

var/answer = input("What kind ? ","Away/VR") as null|anything in list(possible_options + "Custom")
var/answer = input("What kind ? ","Away/VR") as null|anything in possible_options
switch(answer)
if(null)
return
Expand Down

0 comments on commit 66a61e5

Please sign in to comment.