From 2edb618946358a258e3fcf1cb096392bb7a78f98 Mon Sep 17 00:00:00 2001 From: ShadowLarkens Date: Mon, 3 May 2021 11:49:36 -0700 Subject: [PATCH] Remove the lore blurb that pollutes the new player menu with VOREStation edit tags --- code/modules/mob/new_player/new_player.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index 64ffdbed90..959b0ad99e 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -28,8 +28,10 @@ /mob/new_player/proc/new_player_panel_proc() var/output = "
" + /* VOREStation Removal output += "[using_map.get_map_info()]" output +="
" + VOREStation Removal End */ output += "

Character Setup

" if(!ticker || ticker.current_state <= GAME_STATE_PREGAME) @@ -79,7 +81,7 @@ if(GLOB.news_data.station_newspaper && !client.seen_news) show_latest_news(GLOB.news_data.station_newspaper) - panel = new(src, "Welcome","Welcome", 500, 480, src) + panel = new(src, "Welcome","Welcome", 210, 300, src) // VOREStation Edit panel.set_window_options("can_close=0") panel.set_content(output) panel.open()