From f053d12134fc123b750b93eb2d3b4173b94ddbb1 Mon Sep 17 00:00:00 2001 From: Ren Erthilo Date: Tue, 1 May 2012 23:28:21 +0100 Subject: [PATCH] TG: Makes the tensioner firing notice more visible to admins. Adds a listing of the tension required for each mode to have a chance to fire at the bottom of the tensioner controls Revision: r3408 Author: VivianFoxfoot --- code/modules/admin/verbs/diagnostics.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/diagnostics.dm b/code/modules/admin/verbs/diagnostics.dm index ebce8059bd9..4c028c9e7f9 100644 --- a/code/modules/admin/verbs/diagnostics.dm +++ b/code/modules/admin/verbs/diagnostics.dm @@ -254,4 +254,7 @@ "} - usr << browse(output,"window=tensionreport") \ No newline at end of file + for(var/game in tension_master.antagonistmodes) + output += "Points required/Probability for [game]: [tension_master.antagonistmodes[game]]
" + usr << browse(output,"window=tensionreport;size=480x480") + feedback_add_details("admin_verb","STR") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!