mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 03:27:05 +01:00
TG update: Small changes and bugfixes:
◦ Metroids can now be observed by ghosts.
◦ Saved User Interface preferences ("Old UI" & "New UI") now correctly get transferred to clones.
◦ Captain announcements now require the player to be next to the console. (Issue 220)
◦ Radio headsets no longer sometimes fail to deliver the messages (Issue 221)
◦ Some other insignificant back-end shenanigans.
◦ The pregame lobby now has title music. The gameticker chooses between two .ogg files on game start and plays that for everyone who joins. The music stops when create_character() gets called though.
◦ Gave some critters, namely "creature" and "blob" some attack sounds.
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2655 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
committed by
Albert Iordache
parent
fac10fb031
commit
75c7670e75
@@ -367,9 +367,16 @@
|
||||
return
|
||||
*/
|
||||
/obj/item/device/radio/proc/send_hear(freq)
|
||||
/*
|
||||
|
||||
I'm removing this because this is apparently a REALLY REALLY bad thing and causes
|
||||
people's transmissions to get cut off. This also means radios have no delay. A
|
||||
fair price to pay for reliable radios. -- Doohl
|
||||
|
||||
if(last_transmission && world.time < (last_transmission + TRANSMISSION_DELAY))
|
||||
return
|
||||
last_transmission = world.time
|
||||
*/
|
||||
if (!(wires & WIRE_RECEIVE))
|
||||
return
|
||||
if (!freq) //recieved on main frequency
|
||||
|
||||
Reference in New Issue
Block a user