This commit is contained in:
L
2020-07-16 11:14:46 -03:00
parent 6aaa733dce
commit 84c44bc03c
16 changed files with 37 additions and 46 deletions
+1 -1
View File
@@ -71,7 +71,7 @@
if(density)
icon_state = initial(icon_state)
smooth = SMOOTH_TRUE
queue_smooth(src)
QUEUE_SMOOTH(src)
else
icon_state = "fwall_open"
+1 -1
View File
@@ -32,7 +32,7 @@
ratio = CEILING(ratio*4, 1) * 25
if(smooth)
queue_smooth(src)
QUEUE_SMOOTH(src)
if(ratio > 50)
return
@@ -311,7 +311,7 @@
/obj/structure/mineral_door/paperframe/Initialize()
. = ..()
queue_smooth_neighbors(src)
QUEUE_SMOOTH_NEIGHBORS(src)
/obj/structure/mineral_door/paperframe/examine(mob/user)
. = ..()
@@ -346,5 +346,5 @@
return
/obj/structure/mineral_door/paperframe/Destroy()
queue_smooth_neighbors(src)
QUEUE_SMOOTH_NEIGHBORS(src)
return ..()
+2 -2
View File
@@ -44,8 +44,8 @@
/obj/structure/table/update_icon()
if(smooth)
queue_smooth(src)
queue_smooth_neighbors(src)
QUEUE_SMOOTH(src)
QUEUE_SMOOTH_NEIGHBORS(src)
/obj/structure/table/narsie_act()
var/atom/A = loc
+3 -3
View File
@@ -305,7 +305,7 @@
/obj/structure/window/proc/update_nearby_icons()
update_icon()
if(smooth)
queue_smooth_neighbors(src)
QUEUE_SMOOTH_NEIGHBORS(src)
//merges adjacent full-tile windows into one
/obj/structure/window/update_overlays()
@@ -318,7 +318,7 @@
ratio = CEILING(ratio*4, 1) * 25
if(smooth)
queue_smooth(src)
QUEUE_SMOOTH(src)
cut_overlay(crack_overlay)
if(ratio > 75)
@@ -775,7 +775,7 @@
cut_overlay(torn)
add_overlay(paper)
set_opacity(TRUE)
queue_smooth(src)
QUEUE_SMOOTH(src)
/obj/structure/window/paperframe/attackby(obj/item/W, mob/user)