summaryrefslogtreecommitdiffstats
path: root/TemplePushing.c4s/System.c4g/Bounce.c
diff options
context:
space:
mode:
authorMittendrein Markus <maxmitti@gmx.net>2016-02-14 19:40:04 +0100
committerMittendrein Markus <maxmitti@gmx.net>2016-02-14 19:40:04 +0100
commit59409d0520404d83fd8ff32d24659cd7766d63db (patch)
tree621a8258ea56c18285bd750c24e8af5e0fcd73c8 /TemplePushing.c4s/System.c4g/Bounce.c
parent7e1c1bdb78b297f66e475b831fb8ba44e711ad2f (diff)
downloadtempelschubsen-59409d0520404d83fd8ff32d24659cd7766d63db.tar.gz
tempelschubsen-59409d0520404d83fd8ff32d24659cd7766d63db.zip
Disable bounce
Diffstat (limited to 'TemplePushing.c4s/System.c4g/Bounce.c')
-rw-r--r--TemplePushing.c4s/System.c4g/Bounce.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/TemplePushing.c4s/System.c4g/Bounce.c b/TemplePushing.c4s/System.c4g/Bounce.c
deleted file mode 100644
index e2cee50..0000000
--- a/TemplePushing.c4s/System.c4g/Bounce.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/*-- Makes some objects bounce after hit --*/
-
-#strict 2
-
-#appendto ROCK
-#appendto SWOR
-#appendto AXE1
-#appendto ARWP
-#appendto SFLN
-#appendto FLNT
-#appendto EGBL
-#appendto EFLN
-
-protected func Hit()
-{
- if (Random(10)) return _inherited();
- SetYDir(-20);
-
- Sound("Boing");
-
- return 1;
-}