mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-24 12:37:50 +01:00
34 lines
779 B
Plaintext
34 lines
779 B
Plaintext
/mob/new_player/Login()
|
|
update_Login_details() //handles setting lastKnownIP and computer_id for use by the ban systems as well as checking for multikeying
|
|
if(join_motd)
|
|
src << "<div class=\"motd\">[join_motd]</div>"
|
|
|
|
if(!mind)
|
|
mind = new /datum/mind(key)
|
|
mind.active = 1
|
|
mind.current = src
|
|
|
|
if(length(newplayer_start))
|
|
loc = pick(newplayer_start)
|
|
else
|
|
loc = locate(1,1,1)
|
|
lastarea = loc
|
|
|
|
sight |= SEE_TURFS
|
|
player_list |= src
|
|
|
|
/*
|
|
var/list/watch_locations = list()
|
|
for(var/obj/effect/landmark/landmark in landmarks_list)
|
|
if(landmark.tag == "landmark*new_player")
|
|
watch_locations += landmark.loc
|
|
|
|
if(watch_locations.len>0)
|
|
loc = pick(watch_locations)
|
|
*/
|
|
new_player_panel()
|
|
spawn(40)
|
|
if(client)
|
|
handle_privacy_poll()
|
|
client.playtitlemusic()
|