Skip to content

Commit

Permalink
Bug fix for Artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
ImUnicke committed Mar 10, 2021
1 parent 0540cb7 commit 0116d1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AllTheThings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6105,13 +6105,13 @@ local fields = {
return { t.info[9], t.info[10], t.info[11], 1.0 };
end,
["model"] = function(t)
return t.parent and GetRelativeValue(t.parent, key);
return t.parent and GetRelativeValue(t.parent, "model");
end,
["modelScale"] = function(t)
return t.parent and GetRelativeValue(t.parent, key) or 0.95;
return t.parent and GetRelativeValue(t.parent, "modelScale") or 0.95;
end,
["modelRotation"] = function(t)
return t.parent and GetRelativeValue(t.parent, key) or 45;
return t.parent and GetRelativeValue(t.parent, "modelRotation") or 45;
end,
["info"] = function(t)
--[[
Expand Down

0 comments on commit 0116d1c

Please sign in to comment.