summaryrefslogtreecommitdiffstats
path: root/TemplePushing.c4s/System.c4g/Arrowpack.c
diff options
context:
space:
mode:
Diffstat (limited to 'TemplePushing.c4s/System.c4g/Arrowpack.c')
-rw-r--r--TemplePushing.c4s/System.c4g/Arrowpack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/TemplePushing.c4s/System.c4g/Arrowpack.c b/TemplePushing.c4s/System.c4g/Arrowpack.c
index da2c5ec..0bdf5a1 100644
--- a/TemplePushing.c4s/System.c4g/Arrowpack.c
+++ b/TemplePushing.c4s/System.c4g/Arrowpack.c
@@ -33,7 +33,7 @@ protected func Activate(object clonk)
// Do not launch fire arrows too close to the clonk to prevent incineration when launched while climbing
var arrowPosX = IIf(arrow->GetID() == FARW, -10 + 20 * clonk->GetDir(), -3 + 6 * clonk->GetDir());
arrow->Exit(0, arrowPosX, 5, -90 + 180 * clonk->GetDir(), -8 + 16 * clonk->GetDir(), -2);
- arrow->~Launch();
+ arrow->~Launch(clonk);
// Start cooldown
coolingDown = true;
@@ -43,4 +43,4 @@ protected func Activate(object clonk)
Sound("Arrow");
return 1;
-} \ No newline at end of file
+}