Merge pull request #10867 from VOREStation/Fixes/10787

Fix excessive table merge, convert climbers lazy
This commit is contained in:
Aronai Sieyes
2021-07-04 18:46:28 -04:00
committed by Chompstation Bot
parent 0b9ebd3c6a
commit c30f4c2dbc
5 changed files with 29 additions and 27 deletions

View File

@@ -333,6 +333,8 @@ var/list/table_icon_cache = list()
return FALSE
if(istype(src,/obj/structure/table/bench) && !istype(S,/obj/structure/table/bench))
return FALSE
if(istype(src,/obj/structure/table/rack) && !istype(S,/obj/structure/table/rack))
return FALSE
if(istype(S,/obj/structure/table))
return TRUE
..()