Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update source #204

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down