summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/deathpart.c10
-rw-r--r--src/deathpart.h2
-rw-r--r--src/player.c2
3 files changed, 9 insertions, 5 deletions
diff --git a/src/deathpart.c b/src/deathpart.c
index 1579066..050cc54 100644
--- a/src/deathpart.c
+++ b/src/deathpart.c
@@ -4,9 +4,13 @@
#include <stdlib.h>
IMPL_UPDATE() {
- this->vel[1] *= AIR_RESISTANCE;
- this->vel[1] += GRAVITY;
- entity_move(this, g);
+ if (this->deathpart.skip == 0) {
+ this->vel[1] *= AIR_RESISTANCE;
+ this->vel[1] += GRAVITY;
+ entity_move(this, g);
+ this->deathpart.skip = 3;
+ } else
+ this->deathpart.skip -= 1;
} IMPL_END
IMPL_DRAW() {
diff --git a/src/deathpart.h b/src/deathpart.h
index dab4dcb..e62b8ef 100644
--- a/src/deathpart.h
+++ b/src/deathpart.h
@@ -1,7 +1,7 @@
#pragma once
typedef struct {
- int _;
+ int skip;
} DeathPart;
struct Entity;
diff --git a/src/player.c b/src/player.c
index 3af2dfc..d8c2736 100644
--- a/src/player.c
+++ b/src/player.c
@@ -57,7 +57,7 @@ IMPL_UPDATE() {
dy += 2;
}
this->type = ET_NONE;
- g->queue_restart_scene = 30;
+ g->queue_restart_scene = 45;
}
if (entity_place_meeting(this, g, ET_exit) != NULL)