diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2.dm b/code/modules/admin/verbs/SDQL2/SDQL_2.dm
index 60af10ff4e..8155c6c6b4 100644
--- a/code/modules/admin/verbs/SDQL2/SDQL_2.dm
+++ b/code/modules/admin/verbs/SDQL2/SDQL_2.dm
@@ -486,12 +486,12 @@ GLOBAL_DATUM_INIT(sdql2_vv_statobj, /obj/effect/statclick/SDQL2_VV_all, new(null
if(show_next_to_key)
var/mob/showmob = GLOB.directory[show_next_to_key]
if(showmob)
- to_chat(showmob, "SDQL query results: [query.get_query_text()]
\
- SDQL query completed: [islist(query.obj_count_all)? length(query.obj_count_all) : query.obj_count_all] objects selected by path, and \
- [query.where_switched? "[islist(query.obj_count_eligible)? length(query.obj_count_eligible) : query.obj_count_eligible] objects executed on after WHERE keyword selection." : ""]
\
- SDQL query took [DisplayTimeText(query.end_time - query.start_time)] to complete.")
- if(length(query.select_text))
- var/text = islist(query.select_text)? query.select_text.Join() : query.select_text
+ to_chat(showmob, "SDQL query results: [get_query_text()]
\
+ SDQL query completed: [islist(obj_count_all)? length(obj_count_all) : obj_count_all] objects selected by path, and \
+ [where_switched? "[islist(obj_count_eligible)? length(obj_count_eligible) : obj_count_eligible] objects executed on after WHERE keyword selection." : ""]
\
+ SDQL query took [DisplayTimeText(end_time - start_time)] to complete.")
+ if(length(select_text))
+ var/text = islist(select_text)? select_text.Join() : select_text
var/static/result_offset = 0
showmob << browse(text, "window=SDQL-result-[result_offset++]")
show_next_to_key = null