feat: handle scale for the dojo decos that need it #1795

Merged
Sainan merged 2 commits from scale into main 2025-04-23 11:36:57 -07:00
Showing only changes of commit bd186a5f61 - Show all commits

View File

@ -46,9 +46,9 @@ export const placeDecoInComponentController: RequestHandler = async (req, res) =
Type: request.Type,
Pos: request.Pos,
Rot: request.Rot,
Scale: request.Scale,
Name: request.Name,
Sockets: request.Sockets,
Scale: request.Scale
Sockets: request.Sockets
}) - 1
];
const meta = Object.values(ExportDojoRecipes.decos).find(x => x.resultType == request.Type);