- bugfix: can no longer move while on cloud

- reordered levels
This commit is contained in:
Rob Pearce 2008-10-15 07:21:41 +00:00
parent b1b1b87d88
commit 11ad399497
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,6 @@
6,level6.dat,Roller School
8,level9.dat,The Garden
9,level10.dat,Planks
10,level11.dat,The Hive
11,level5.5.dat,Spike Pit
12,level7.5.dat,Snake Holes
13,level11.5.dat,Underground Lakes
@ -14,6 +13,7 @@
7,level7.dat,Platforms and Ladders
19,theisland.dat,Island
15,level13.dat,Dual Hives
10,level11.dat,The Hive
16,level14.dat,The Chimney
14,level12.dat,Bee Pods
18,level8.5.dat,Look out above...

2
rc.c
View File

@ -413,7 +413,7 @@ int main (int argc, char **argv) {
}
}
if ((!player->dead) && (!player->teleporting)) {
if ((!player->dead) && (!player->teleporting) && (levelcomplete != LV_CLOUDLOOP)) {
if (keys[SDLK_RIGHT]) {
if (canmove(player)) {
movex(player, getspeed(player));