--- a/hedgewars/CCHandlers.inc Mon Sep 24 20:34:28 2007 +0000
+++ b/hedgewars/CCHandlers.inc Thu Sep 27 16:55:49 2007 +0000
@@ -475,7 +475,7 @@
c:= s[1];
Delete(s, 1, 1);
case c of
- 's': begin // s12345 1 1 33 0 0 123456
+ 's': begin // sTYPE TICKS LIVES GEARTYPE X Y GEARTRIGGER
SplitBySpace(s, tmp);
val(s, ttype);
SplitBySpace(tmp, s);
@@ -492,5 +492,9 @@
val(s, geartrig);
AddTriggerSpawner(ttype, Ticks, Lives, X, Y, TGearType(gt), geartrig);
end;
+ 'C': begin
+ val(s, ttype);
+ AddTriggerSuccess(ttype);
+ end;
end
end;