summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorPhilip <philip@philip-linuxlaptop.(none)>2010-11-07 00:45:36 (GMT)
committer Philip <philip@philip-linuxlaptop.(none)>2010-11-07 00:45:36 (GMT)
commit3ad216f95310822837e423c4e6e96fea51a8c0b2 (patch)
tree3c83b775b3a09f830ac9fb9f2276f3b7ee9dd897 /src/main.c
parent75922ae31df9df98f258cf2a5995524b3e4fc63b (diff)
downloadpowder-3ad216f95310822837e423c4e6e96fea51a8c0b2.zip
powder-3ad216f95310822837e423c4e6e96fea51a8c0b2.tar.gz
added amoeba, move, pseudo life, and diamoeba particles
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index fe5cfd8..9db78db 100644
--- a/src/main.c
+++ b/src/main.c
@@ -530,6 +530,14 @@ int parse_save(void *save, int size, int replace, int x0, int y0)
gol[x][y] = 4;
if(j == PT_DANI)
gol[x][y] = 5;
+ if(j == PT_AMOE)
+ gol[x][y] = 6;
+ if(j == PT_MOVE)
+ gol[x][y] = 7;
+ if(j == PT_PGOL)
+ gol[x][y] = 8;
+ if(j == PT_DMOE)
+ gol[x][y] = 9;
if(j == PT_PHOT)
parts[k].ctype = 0x3fffffff;
parts[k].x = (float)x;