mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
More CI for conditionals (#24050)
* yay * and thus, it was fixed * and this fix too, so that the lang server stops complaining * warrior review
This commit is contained in:
@@ -52,7 +52,7 @@
|
||||
if((usr.stat || usr.restrained())) //For when a player is handcuffed while they have the notice window open
|
||||
return
|
||||
var/obj/item/P = locate(href_list["remove"])
|
||||
if((P && P.loc == src))
|
||||
if(P && P.loc == src)
|
||||
P.loc = get_turf(src) //dump paper on the floor because you're a clumsy fuck
|
||||
P.add_fingerprint(usr)
|
||||
add_fingerprint(usr)
|
||||
@@ -77,6 +77,6 @@
|
||||
|
||||
if(href_list["read"])
|
||||
var/obj/item/paper/P = locate(href_list["read"])
|
||||
if((P && P.loc == src))
|
||||
if(P && P.loc == src)
|
||||
P.show_content(usr)
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user