-Fixed an issue where the NTSL's broadcast function couldn't send it's signal due to the new telecommunication machines.

-Made the telecommunication server and NTSL broadcast more robust so that having a HUB is an option, if someone decides to create their own network.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4325 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
giacomand@gmail.com
2012-08-06 14:48:10 +00:00
parent 853433e610
commit d897798d5c
2 changed files with 3 additions and 0 deletions

View File

@@ -509,6 +509,7 @@ var/global/list/obj/machinery/telecomms/telecomms_list = list()
if(Compiler && autoruncode)
Compiler.Run(signal) // execute the code
relay_information(signal, "/obj/machinery/telecomms/broadcaster", 1)
relay_information(signal, "/obj/machinery/telecomms/hub", 1)

View File

@@ -268,4 +268,6 @@ datum/signal
newsign.data["vmessage"] = H.voice_message
newsign.data["vname"] = H.voice_name
newsign.data["vmask"] = 0
S.relay_information(newsign, "/obj/machinery/telecomms/broadcaster") // send this simple message to broadcasters
S.relay_information(newsign, "/obj/machinery/telecomms/hub")