From dd093ab98e9f94cf295802f13f6e636e610a718a Mon Sep 17 00:00:00 2001 From: Ninjapikachushka Date: Fri, 10 Jan 2025 08:48:31 +0300 Subject: [PATCH] refresh and find to browser options --- code/modules/admin/verbs/debug.dm | 2 +- code/modules/client/client_procs.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index a738ca169fa..5595551cd1e 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -735,4 +735,4 @@ But you can call procs that are of type /mob/living/carbon/human/proc for that p return to_chat(src, "You can now right click to use inspect on browsers.") - winset(src, "", "browser-options=byondstorage,find,devtools") + winset(src, "", "browser-options=byondstorage,find,devtools,refresh") diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index bc991385ba4..bef8988183e 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -204,7 +204,7 @@ var/global/list/blacklisted_builds = list( /client/New(TopicData) // TODO: Remove with 516 if(byond_version >= 516) // Enable 516 compat browser storage mechanisms - winset(src, "", "browser-options=byondstorage") + winset(src, "", "browser-options=byondstorage,refresh,find") var/tdata = TopicData //save this for later use TopicData = null //Prevent calls to client.Topic from connect