Skip to content

Commit

Permalink
Makes byond pop the messages window up on server hop
Browse files Browse the repository at this point in the history
(So they know if byond is downloading resources)
  • Loading branch information
MrStonedOne authored Jun 28, 2016
1 parent d01c621 commit dfebb56
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/modules/mob/dead/observer/observer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,8 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
if (alert(src, "Jump to server running at [global.cross_address]?", "Server Hop", "Yes", "No") != "Yes")
return 0
if (client && global.cross_allowed)
src << "<span class='notice'>Sending you to [global.cross_address]</span>"
src << "<span class='notice'>Sending you to [global.cross_address].</span>"
winset(usr, null, "command=.options") //other wise the user never knows if byond is downloading resources
client << link(global.cross_address)
else
src << "<span class='error'>There is no other server configured!</span>"
Expand Down

0 comments on commit dfebb56

Please sign in to comment.