From d2800ca1f30e431735304d6c5e55a80970c11edf Mon Sep 17 00:00:00 2001 From: Juan Ignacio Molteni Date: Wed, 18 Dec 2024 11:36:49 -0300 Subject: [PATCH] chore: make legacy animation default (#388) Signed-off-by: Juan Ignacio Molteni --- src/commands/queue-ab-conversion.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/queue-ab-conversion.ts b/src/commands/queue-ab-conversion.ts index a86444e..a88b370 100644 --- a/src/commands/queue-ab-conversion.ts +++ b/src/commands/queue-ab-conversion.ts @@ -23,7 +23,7 @@ export default async () => { const platforms = (args['--platform'] as Platform[]) || Object.values(Platform) const contentUrl = (args['--content-server'] || 'https://peer.decentraland.org/content').replace(/\/$/, '') const shouldPrioritize = !!args['--prioritize'] - const animation = args['--animation'] || 'mecanim' + const animation = args['--animation'] || 'legacy' assert(!!token, '--token is missing') assert(pointers.length > 0 || cids.length > 0, '--pointer or --cid are required')