mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-22 11:38:12 +01:00
Adds Mockingjay00's title screen.
Adds a system to randomly pick a title screen for the round.
This commit is contained in:
@@ -1,5 +1,17 @@
|
||||
///var/atom/movable/lobby_image = new /atom/movable{icon = 'icons/misc/title.dmi'; icon_state = lobby_image_state; screen_loc = "1,1"; name = "Polaris"}
|
||||
|
||||
/var/atom/movable/lobby_image = new /atom/movable{icon = 'icons/misc/title.dmi'; icon_state = "title"; screen_loc = "1,1"; name = "Polaris"}
|
||||
var/obj/effect/lobby_image = new /obj/effect/lobby_image
|
||||
|
||||
/obj/effect/lobby_image
|
||||
name = "Polaris"
|
||||
desc = "How are you reading this?"
|
||||
icon = 'icons/misc/title.dmi'
|
||||
icon_state = null //determined randomly later on.
|
||||
screen_loc = "1,1"
|
||||
var/list/lobby_images = list("mockingjay00")
|
||||
|
||||
/obj/effect/lobby_image/New()
|
||||
icon_state = pick(lobby_images)
|
||||
|
||||
/mob/new_player
|
||||
var/client/my_client // Need to keep track of this ourselves, since by the time Logout() is called the client has already been nulled
|
||||
|
||||
Reference in New Issue
Block a user