We don't actually implement the PieceTrait method, so that just
returns Inapplicable. Ie, after this you can try to multiselect a
banknote but you get
Problem manipulating piece: UI operation not valid in the curret piece state
in the log.
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
itemname, qty, min_unit,
};
- SpecLoaded { p: Box::new(bnote) as _, occultable: None,
- special: default() }
+ let special = PieceSpecialProperties {
+ multigrab: true,
+ ..default()
+ };
+ SpecLoaded { p: Box::new(bnote) as _, occultable: None, special }
}
}