diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2_parser.dm b/code/modules/admin/verbs/SDQL2/SDQL_2_parser.dm index 520a83b25b6..3dbe45235a5 100644 --- a/code/modules/admin/verbs/SDQL2/SDQL_2_parser.dm +++ b/code/modules/admin/verbs/SDQL2/SDQL_2_parser.dm @@ -396,7 +396,7 @@ string(i, list/node) if(copytext(token(i), 1, 2) in list("'", "\"")) - node += token(i) + node += copytext(token(i),2,-1) else parse_error("Expected string but found '[token(i)]'") diff --git a/code/modules/mob/living/simple_animal/hostile/statue.dm b/code/modules/mob/living/simple_animal/hostile/statue.dm index 334fb15e237..d26707238bf 100644 --- a/code/modules/mob/living/simple_animal/hostile/statue.dm +++ b/code/modules/mob/living/simple_animal/hostile/statue.dm @@ -219,4 +219,9 @@ /mob/living/simple_animal/hostile/statue/sentience_act() - faction -= "neutral" \ No newline at end of file + faction -= "neutral" + +/mob/living/simple_animal/hostile/statue/restrained() + . == ..() + if(can_be_seen(loc)) + return 1 \ No newline at end of file