mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 11:05:03 +01:00
fixes for RPD and RCS exploits
This commit is contained in:
@@ -192,6 +192,10 @@ var/list/pipemenu = list(
|
||||
return
|
||||
if(world.time < lastused + spawndelay)
|
||||
return
|
||||
var/turf/T = get_turf(target)
|
||||
for(var/obj/machinery/shieldwall/S in T)
|
||||
to_chat(user, "<span class='warning'>[S] blocks access!</span>")
|
||||
return
|
||||
target.rpd_act(user, src) //Handle RPD effects in separate procs
|
||||
|
||||
#undef RPD_COOLDOWN_TIME
|
||||
|
||||
@@ -41,6 +41,12 @@
|
||||
return
|
||||
return ..(M)
|
||||
|
||||
/obj/structure/closet/secure_closet/syndicate/depot/attackby(obj/item/W, mob/user, params)
|
||||
if(istype(W, /obj/item/rcs))
|
||||
to_chat(user, "<span class='warning'>Bluespace interference prevents the [W] from locking onto [src]!</span>")
|
||||
return
|
||||
return ..()
|
||||
|
||||
/obj/structure/closet/secure_closet/syndicate/depot/emp_act(severity)
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user