mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-17 21:52:42 +00:00
Merge pull request #7363 from Verkister/patch-41
Fixes table/bench icon connections.
This commit is contained in:
@@ -323,6 +323,15 @@
|
||||
qdel(src)
|
||||
return shards
|
||||
|
||||
/obj/structure/table/can_visually_connect_to(var/obj/structure/S)
|
||||
if(istype(S,/obj/structure/table/bench) && !istype(src,/obj/structure/table/bench))
|
||||
return FALSE
|
||||
if(istype(src,/obj/structure/table/bench) && !istype(S,/obj/structure/table/bench))
|
||||
return FALSE
|
||||
if(istype(S,/obj/structure/table))
|
||||
return TRUE
|
||||
..()
|
||||
|
||||
/obj/structure/table/update_icon()
|
||||
if(flipped != 1)
|
||||
icon_state = "blank"
|
||||
|
||||
Reference in New Issue
Block a user