From 3b97c95d6c82378fe4b3c8c12278efb4e9d5e4de Mon Sep 17 00:00:00 2001 From: Rocky Rickaby <81652934+rocky-rickaby10@users.noreply.github.com> Date: Thu, 30 Jan 2025 21:35:46 -0800 Subject: [PATCH] Update source Fix a misspelling that breaks touchinterests and a few other commands' name argument --- source | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source b/source index 4c3b83c..01c435d 100644 --- a/source +++ b/source @@ -10686,7 +10686,7 @@ addcmd('fireclickdetectors',{'firecd','firecds'}, function(args, speaker) if args[1] then local name = getstring(1) for _, descendant in ipairs(workspace:GetDescendants()) do - if descendant:IsA("ClickDetector") and descendant.Name == name or descandant.Parent.Name == name then + if descendant:IsA("ClickDetector") and descendant.Name == name or descendant.Parent.Name == name then fireclickdetector(descendant) end end @@ -10715,7 +10715,7 @@ addcmd('fireproximityprompts',{'firepp'},function(args, speaker) if args[1] then local name = getstring(1) for _, descendant in ipairs(workspace:GetDescendants()) do - if descendant:IsA("ProximityPrompt") and descendant.Name == name or descandant.Parent.Name == name then + if descendant:IsA("ProximityPrompt") and descendant.Name == name or descendant.Parent.Name == name then fireproximityprompt(descendant) end end @@ -11157,7 +11157,7 @@ addcmd('touchinterests', {'touchinterest', 'firetouchinterests', 'firetouchinter if args[1] then local name = getstring(1) for _, descendant in ipairs(workspace:GetDescendants()) do - if descendant:IsA("TouchTransmitter") and descendant.Name == name or descandant.Parent.Name == name then + if descendant:IsA("TouchTransmitter") and descendant.Name == name or descendant.Parent.Name == name then touch(descendant) end end