enhance beastform application and fix action selection style

This commit is contained in:
moliloo 2025-07-20 21:45:48 -03:00
parent a6c4516238
commit d04393dd5a
7 changed files with 41 additions and 17 deletions

View file

@ -10,7 +10,9 @@ export default class DhBeastformAction extends DHBaseAction {
const abort = await this.handleActiveTransformations();
if (abort) return;
const { selected, evolved, hybrid } = await BeastformDialog.configure(beastformConfig);
const item = args[0];
const { selected, evolved, hybrid } = await BeastformDialog.configure(beastformConfig, item);
if (!selected) return;
await this.transform(selected, evolved, hybrid);