summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Creature.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Creature.cpp b/Creature.cpp
index ba2a790..b63bf6d 100644
--- a/Creature.cpp
+++ b/Creature.cpp
@@ -4,7 +4,7 @@
Creature::Creature() {
std::cout << "Creature::Creature(): Creature created.\n";
xVel = 0;
- yVel = 0;
+ yVel = GRAVITY;
}
int Creature::getXVel() {