summaryrefslogtreecommitdiffstats
path: root/TemplePushing.c4s/System.c4g/Arrowpack.c
diff options
context:
space:
mode:
authorMittendrein Markus <maxmitti@gmx.net>2016-02-10 14:22:21 +0100
committerMittendrein Markus <maxmitti@gmx.net>2016-02-10 14:22:21 +0100
commitb4434b1981860e9412fb25239d612960008bb81c (patch)
tree1a01a97b5ca01c120d3c42d9ed450b1081dcd51c /TemplePushing.c4s/System.c4g/Arrowpack.c
parent1c9d3fceaf8b515ad2d59b12e8c63562d934698d (diff)
downloadtempelschubsen-b4434b1981860e9412fb25239d612960008bb81c.tar.gz
tempelschubsen-b4434b1981860e9412fb25239d612960008bb81c.zip
Rework QueryCatchBlow
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
+}