diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 80dc3622091..f8e44c02c1c 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -433,11 +433,14 @@ /client/verb/changes() set name = "Changelog" set category = "OOC" - src << browse('html/changelog.html', "window=changes;size=675x650") + src << link("https://wiki.vore-station.net/Changelog") + + /* if(prefs.lastchangelog != changelog_hash) prefs.lastchangelog = changelog_hash SScharacter_setup.queue_preferences_save(prefs) winset(src, "rpane.changelog", "background-color=none;font-style=;") + */ /mob/verb/observe() set name = "Observe" diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index 51fb6645535..8b236f39262 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -30,10 +30,11 @@ /mob/new_player/proc/new_player_panel_proc() var/output = "
" - /* VOREStation Removal - output += "[using_map.get_map_info()]" + + output += "Current Map:
" + output += "[using_map.full_name]" output +="
" - VOREStation Removal End */ + output += "

Character Setup

" if(!ticker || ticker.current_state <= GAME_STATE_PREGAME) @@ -67,10 +68,7 @@ else output += "

Show Player Polls

" - if(client.check_for_new_server_news()) - output += "

Show Game Updates (NEW!)

" - else - output += "

Show Game Updates

" + output += "

View Changelog

" if(SSsqlite.can_submit_feedback(client)) output += "

[href(src, list("give_feedback" = 1), "Give Feedback")]

" @@ -348,6 +346,9 @@ else client.feedback_form = new(client) + if(href_list["open_changelog"]) + src << link("https://wiki.vore-station.net/Changelog") + /mob/new_player/proc/handle_server_news() if(!client) return