fix #14079 (Fumble)

This commit is contained in:
xenohedron 2025-11-18 22:47:01 -05:00
parent a2a4af7981
commit e7e6623ec9

View file

@ -97,7 +97,7 @@ class FumbleEffect extends OneShotEffect {
effect.setTargetPointer(new FixedTarget(attachment, game)); effect.setTargetPointer(new FixedTarget(attachment, game));
game.addEffect(effect, source); game.addEffect(effect, source);
if (newCreature != null) { if (newCreature != null) {
attachment.attachTo(newCreature.getId(), source, game); newCreature.addAttachment(attachment.getId(), source, game);
} }
} }
} }