mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-27 10:32:40 +00:00
This means items now spawn in your hand if possible, items are sorted into categories, and only items you have enough telecrystals to purchase will be displayed. Also, the same basic code is now used for PDA, headset and nuke-round uplinks, and it should be easier to add new items. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3216 316c924e-a436-60f5-8080-3fe189b3f50e
24 lines
570 B
Plaintext
24 lines
570 B
Plaintext
/datum/game_mode/sandbox
|
|
name = "sandbox"
|
|
config_tag = "sandbox"
|
|
required_players = 0
|
|
|
|
uplink_welcome = "Syndicate Uplink Console:"
|
|
uplink_uses = 10
|
|
|
|
/datum/game_mode/sandbox/announce()
|
|
world << "<B>The current game mode is - Sandbox!</B>"
|
|
world << "<B>Build your own station with the sandbox-panel command!</B>"
|
|
|
|
/datum/game_mode/sandbox/pre_setup()
|
|
for(var/mob/M in world)
|
|
if(M.client && M.client.authenticated)
|
|
M.CanBuild()
|
|
|
|
setup_sectors()
|
|
spawn_exporation_packs()
|
|
return 1
|
|
|
|
/datum/game_mode/sandbox/check_finished()
|
|
return 0
|