--- a/hedgewars/uConsts.pas Sun Nov 09 23:02:21 2014 +0300
+++ b/hedgewars/uConsts.pas Tue Nov 18 23:39:30 2014 +0300
@@ -151,7 +151,7 @@
cMaxHHIndex = 7;
cMaxHHs = 48;
- cMaxEdgePoints = 16384;
+ cMaxEdgePoints = 32768;
cHHRadius = 9;
cHHStepTicks = 29;
@@ -302,6 +302,8 @@
posCaseExplode = $00000010;
posCasePoison = $00000020;
+ cCaseHealthRadius = 14;
+
// hog tag mask
//htNone = $00;
htTeamName = $01;
@@ -316,6 +318,12 @@
cMinPlayWidth = 200;
+ // MapGen
+ mgRandom = 0;
+ mgMaze = 1;
+ mgPerlin = 2;
+ mgDrawn = 3;
+
implementation
end.