about summary refs log tree commit diff
path: root/src/editor/editor.cpp
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2007-08-25 08:48:24 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2007-08-25 08:48:24 +0000
commit89ccbd4f7b478b49329fa39be62ee3a5b38641bc (patch)
treefc96f677e9947f4d7b7642999544d954f0a10617 /src/editor/editor.cpp
parent3e23392105fad0d847b41f730d002a700cd4d752 (diff)
downloadzcatch-89ccbd4f7b478b49329fa39be62ee3a5b38641bc.tar.gz
zcatch-89ccbd4f7b478b49329fa39be62ee3a5b38641bc.zip
compressed map support. begun to fix things for ctf
Diffstat (limited to 'src/editor/editor.cpp')
-rw-r--r--src/editor/editor.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/editor/editor.cpp b/src/editor/editor.cpp
index 03054421..8e039f2a 100644
--- a/src/editor/editor.cpp
+++ b/src/editor/editor.cpp
@@ -26,13 +26,21 @@ struct ent_type
 
 static ent_type ent_types[] = {
 	{"spawn", MAPRES_SPAWNPOINT, 0},
+	{"spawn_red", MAPRES_SPAWNPOINT_RED, 0},
+	{"spawn_blue", MAPRES_SPAWNPOINT_BLUE, 0},
+	{"---", 0, 0},
+	{"flagstand_red", MAPRES_SPAWNPOINT_RED, 0},
+	{"flagstand_blue", MAPRES_SPAWNPOINT_BLUE, 0},
+	{"---", 0, 0},
 	{"gun", MAPRES_ITEM, ITEM_WEAPON_GUN},
 	{"shotgun", MAPRES_ITEM, ITEM_WEAPON_SHOTGUN},
 	{"rocket", MAPRES_ITEM, ITEM_WEAPON_ROCKET},
 	{"sniper", MAPRES_ITEM, ITEM_WEAPON_SNIPER},
 	{"hammer", MAPRES_ITEM, ITEM_WEAPON_HAMMER},
+	{"---", 0, 0},
 	{"health", MAPRES_ITEM, ITEM_HEALTH},
 	{"armor", MAPRES_ITEM, ITEM_ARMOR},
+	{"---", 0, 0},
 	{"ninja", MAPRES_ITEM, ITEM_NINJA},
 	{0, 0}
 };