okay im done

it's a environment issue i think
This commit is contained in:
AnonymousHybi
2018-03-21 16:23:54 +00:00
parent c45971bd00
commit 3a26426ae3
2 changed files with 2 additions and 4 deletions
+1 -3
View File
@@ -1,8 +1,5 @@
var/list/gamemode_cache = list()
// Also global to prevent easy edits
var/global/python_path = "" //Path to the python executable. Defaults to "python" on windows and "/usr/bin/env python2" on unix
/datum/configuration
var/server_name = null // server name (for world name / status)
var/server_suffix = 0 // generate numeric suffix based on server port
@@ -52,6 +49,7 @@ var/global/python_path = "" //Path to the python executable. Defaults to "pytho
var/fps = 20
var/tick_limit_mc_init = TICK_LIMIT_MC_INIT_DEFAULT //SSinitialization throttling
var/Tickcomp = 0
var/python_path = "" //Path to the python executable. Defaults to "python" on windows and "/usr/bin/env python2" on unix
var/socket_talk = 0 // use socket_talk to communicate with other processes
var/list/resource_urls = null
var/antag_hud_allowed = 0 // Ghosts can turn on Antagovision to see a HUD of who is the bad guys this round.
+1 -1
View File
@@ -4,6 +4,6 @@
if(world.system_type == MS_WINDOWS)
script = replacetext(script, "/", "\\")
var/command = python_path + " " + script + " " + args
var/command = config.python_path + " " + script + " " + args
shell("[command]")
return