feat: add support of skill for ArrayContent.
This commit is contained in:
parent
e0ec29c5e4
commit
4d758a9a54
|
@ -11345,7 +11345,13 @@ export class Library extends Uninstantable {
|
||||||
next.player = player;
|
next.player = player;
|
||||||
next._trigger = trigger;
|
next._trigger = trigger;
|
||||||
next.triggername = event.triggername;
|
next.triggername = event.triggername;
|
||||||
next.setContent(info.content);
|
|
||||||
|
if ("contents" in info && Array.isArray(info.contents)) {
|
||||||
|
next.setContents(info.contents);
|
||||||
|
} else {
|
||||||
|
next.setContent(info.content);
|
||||||
|
}
|
||||||
|
|
||||||
next.skillHidden = event.skillHidden;
|
next.skillHidden = event.skillHidden;
|
||||||
if (info.forceDie) next.forceDie = true;
|
if (info.forceDie) next.forceDie = true;
|
||||||
if (info.forceOut) next.includeOut = true;
|
if (info.forceOut) next.includeOut = true;
|
||||||
|
|
Loading…
Reference in New Issue