Skip to content

Commit ba8d779

Browse files
authored
Merge pull request #12 from FloofyPlasma/main
Fix property setting
2 parents d127ad9 + aa58eca commit ba8d779

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/new.luau

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ return (
2828

2929
if props then
3030
for prop, value in props :: any do
31-
if prop == "Parent" or "Name" then
31+
if prop == "Parent" or prop == "Name" then
3232
continue
3333
end
3434
Apply(New, prop, value)

0 commit comments

Comments
 (0)