mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-22 19:47:47 +01:00
Merge pull request #14661 from KillianKirilenko/kk-mini3
Changelog Reroute
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -30,10 +30,11 @@
|
||||
|
||||
/mob/new_player/proc/new_player_panel_proc()
|
||||
var/output = "<div align='center'>"
|
||||
/* VOREStation Removal
|
||||
output += "[using_map.get_map_info()]"
|
||||
|
||||
output += "<b>Current Map:</b><br>"
|
||||
output += "[using_map.full_name]"
|
||||
output +="<hr>"
|
||||
VOREStation Removal End */
|
||||
|
||||
output += "<p><a href='byond://?src=\ref[src];show_preferences=1'>Character Setup</A></p>"
|
||||
|
||||
if(!ticker || ticker.current_state <= GAME_STATE_PREGAME)
|
||||
@@ -67,10 +68,7 @@
|
||||
else
|
||||
output += "<p><a href='byond://?src=\ref[src];showpoll=1'>Show Player Polls</A></p>"
|
||||
|
||||
if(client.check_for_new_server_news())
|
||||
output += "<p><b><a href='byond://?src=\ref[src];shownews=1'>Show Game Updates</A> (NEW!)</b></p>"
|
||||
else
|
||||
output += "<p><a href='byond://?src=\ref[src];shownews=1'>Show Game Updates</A></p>"
|
||||
output += "<p><a href='byond://?src=\ref[src];open_changelog=1'>View Changelog</A></p>"
|
||||
|
||||
if(SSsqlite.can_submit_feedback(client))
|
||||
output += "<p>[href(src, list("give_feedback" = 1), "Give Feedback")]</p>"
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user