Skip to content
Merged
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
18 changes: 9 additions & 9 deletions DMCompiler/DMStandard/Types/World.dm
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@
var/byond_version = DM_VERSION
var/byond_build = DM_BUILD

var/version = 0 as opendream_unimplemented
var/version = 0 as num|opendream_unsupported //only used to notify users on the hub - unsupported due to no hub

var/address
var/port = 0 as opendream_compiletimereadonly
var/internet_address = "127.0.0.1" as opendream_unimplemented
var/url as opendream_unimplemented
var/visibility = 0 as opendream_unimplemented
var/status as opendream_unimplemented
var/visibility = 0 as num|opendream_unimplemented //used to control server appearing on the hub - this will have to use ServerStatusCode.Offline/Online
var/status = "" as text|opendream_unimplemented //used to display a message appearing under the server on the hub - this will have to use the server desc on the hub
var/process
var/list/params = null

Expand All @@ -45,14 +45,14 @@
var/const/system_type as opendream_noconstfold

var/map_cpu = 0 as opendream_unimplemented
var/hub as opendream_unimplemented
var/hub_password as opendream_unimplemented
var/hub = "" as text|opendream_unsupported //used to mark a game as unique on the hub - unsupported due to no hub
var/hub_password = "" as text|opendream_unsupported //authentication for above - unsupported due to no hub
var/reachable as opendream_unimplemented
var/game_state as opendream_unimplemented
var/host as opendream_unimplemented
var/game_state = 0 as num|opendream_unsupported //used to display server joinability on the hub - does not actually affect joining - unsupported due to no hub
var/host = "" as text|opendream_unsupported //contains the key of the world's host - unsupported as OD server does not run as a user
var/map_format = TOPDOWN_MAP as opendream_unimplemented
var/cache_lifespan = 30 as opendream_unimplemented
var/executor as opendream_unimplemented
var/cache_lifespan = 30 as num|opendream_unsupported //used to control cache expiry in RSC - unsupported due to no RSC
var/executor = "" as text|opendream_unsupported // DMCGI nonsense - there will be no ODCGI

// An OpenDream read-only var that tells you what port Topic() is listening on
// Remove OPENDREAM_TOPIC_PORT_EXISTS if this is ever removed
Expand Down
Loading