mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-18 14:12:20 +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)
|
qdel(src)
|
||||||
return shards
|
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()
|
/obj/structure/table/update_icon()
|
||||||
if(flipped != 1)
|
if(flipped != 1)
|
||||||
icon_state = "blank"
|
icon_state = "blank"
|
||||||
|
|||||||
Reference in New Issue
Block a user