Overmap Range Tweak (#16439)

This commit is contained in:
Geeves
2023-06-23 16:38:16 +00:00
committed by GitHub
parent b579ac1668
commit 433a275fc8
5 changed files with 10 additions and 4 deletions
+1 -1
View File
@@ -466,7 +466,7 @@ For the other part of the code, check silicon say.dm. Particularly robot talk.*/
icon_state = "holopad0_lr"
icon_state_suffix = "_lr"
long_range = TRUE
max_overmap_call_range = 4
max_overmap_call_range = 6
/obj/machinery/hologram/holopad/long_range/get_holopad_id()
holopad_id = ""
@@ -11,7 +11,7 @@
idle_power_usage = 0
active_power_usage = 0
produces_heat = FALSE
overmap_range = 2
overmap_range = 3
var/away_aio = FALSE
var/list/recent_broadcasts
@@ -15,7 +15,7 @@
produces_heat = FALSE
delay = 7
circuitboard = "/obj/item/circuitboard/telecomms/broadcaster"
overmap_range = 2
overmap_range = 3
var/list/recent_broadcasts
/obj/machinery/telecomms/broadcaster/Initialize(mapload)
@@ -10,7 +10,7 @@
desc = "This machine has a dish-like shape and green lights. It is designed to detect and process subspace radio activity."
telecomms_type = /obj/machinery/telecomms/receiver
produces_heat = FALSE
overmap_range = 2
overmap_range = 3
circuitboard = "/obj/item/circuitboard/telecomms/receiver"
/obj/machinery/telecomms/receiver/Initialize(mapload)
+6
View File
@@ -0,0 +1,6 @@
author: Geeves
delete-after: True
changes:
- rscadd: "Increased the overmap range for holopads to six tiles (up from four), for radios to three tiles (up from two)."