mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 12:37:26 +01:00
- Replaced a few more conveyor switches with the one-way conveyor switch.
- Added feedback gathering for radio, rc and pda message use. (Only the number of messages sent is recorded) - Generalized the 'round_end' time feedback logging into a proc that now also handles the radio/pda/rc processing at round end. ( blackbox.round_end_data_gathering(), where blackbox is the blackbox recorder object. ) git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3111 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -184,7 +184,7 @@ var/global/datum/controller/gameticker/ticker
|
||||
feedback_set_details("end_proper","proper completion")
|
||||
world << "\blue <B>Restarting in [restart_timeout/10] seconds</B>"
|
||||
|
||||
feedback_set_details("round_end","[time2text(world.realtime)]")
|
||||
|
||||
if(blackbox)
|
||||
blackbox.save_all_data_to_sql()
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
world << "Rebooting world in 5 seconds."
|
||||
|
||||
feedback_set_details("end_error","malf - no AI")
|
||||
feedback_set_details("round_end","[time2text(world.realtime)]")
|
||||
|
||||
if(blackbox)
|
||||
blackbox.save_all_data_to_sql()
|
||||
sleep(50)
|
||||
|
||||
@@ -207,7 +207,7 @@
|
||||
world << "<B>Resetting in 30 seconds!</B>"
|
||||
|
||||
feedback_set_details("end_error","nuke - unhandled ending")
|
||||
feedback_set_details("round_end","[time2text(world.realtime)]")
|
||||
|
||||
if(blackbox)
|
||||
blackbox.save_all_data_to_sql()
|
||||
sleep(300)
|
||||
|
||||
+2
-2
@@ -78,7 +78,7 @@
|
||||
world <<"\red <B>World will reboot in 10 seconds</B>"
|
||||
|
||||
feedback_set_details("end_error","mode vote - [winner]")
|
||||
feedback_set_details("round_end","[time2text(world.realtime)]")
|
||||
|
||||
if(blackbox)
|
||||
blackbox.save_all_data_to_sql()
|
||||
|
||||
@@ -99,7 +99,7 @@
|
||||
world <<"\red <B>World will reboot in 5 seconds</B>"
|
||||
|
||||
feedback_set_details("end_error","restart vote")
|
||||
feedback_set_details("round_end","[time2text(world.realtime)]")
|
||||
|
||||
if(blackbox)
|
||||
blackbox.save_all_data_to_sql()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user