From 2037b05303f7d49624078b2969a07f92f01df102 Mon Sep 17 00:00:00 2001 From: Anna Puddles <113144806+annapuddles@users.noreply.github.com> Date: Fri, 13 Jan 2023 19:59:10 -0500 Subject: [PATCH] Transition to shutdown state instead of off --- prim-dns.lsl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/prim-dns.lsl b/prim-dns.lsl index fe959e9..a5decd3 100644 --- a/prim-dns.lsl +++ b/prim-dns.lsl @@ -335,7 +335,7 @@ state startup } else if (message == "shutdown") { - state off; + state shutdown; } } @@ -480,7 +480,7 @@ state request_url } else if (message == "shutdown") { - state off; + state shutdown; } } @@ -597,7 +597,7 @@ state main } else if (method == "prim-dns:shutdown") { - state off; + state shutdown; } }