Boomshire: fix arg_count_mismatch warning.

install-platforms
Clonkonaut 2017-10-29 11:34:53 +01:00
parent 4d1a000ed8
commit 3084edcab7
1 changed files with 3 additions and 3 deletions

View File

@ -6,8 +6,8 @@ public func RejectCollect() { return true; }
// Start the chest closed.
public func Construction()
{
inherited();
inherited(...);
PlayAnimation("Close", 5, Anim_Linear(0, 0, GetAnimationLength("Close"), 1, ANIM_Hold));
is_open = false;
}
@ -37,7 +37,7 @@ public func Open(clonk)
GameCall("OnChestOpened", clonk);
Sound("Toot");
ScheduleCall(this, "DoTheConfetti", 2, 20);
return inherited(clonk, ...);
return inherited();
}
public func DoTheConfetti()