aboutsummaryrefslogtreecommitdiffstats
path: root/src/gameplay.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-12-04 08:49:49 -0500
committerClyne Sullivan <tullivan99@gmail.com>2015-12-04 08:49:49 -0500
commit5f0a1b99133a4f333f8be1466f1f5bf1245d6781 (patch)
tree9aaed764b312449de2972780dc0fa0fc3dd86d21 /src/gameplay.cpp
parent92cd5d10c536c92e4ece15a526f124c9f3805084 (diff)
world fixes
Diffstat (limited to 'src/gameplay.cpp')
-rw-r--r--src/gameplay.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/gameplay.cpp b/src/gameplay.cpp
index b4c4b16..eb5ce79 100644
--- a/src/gameplay.cpp
+++ b/src/gameplay.cpp
@@ -29,15 +29,21 @@ int giveTestQuest(NPC *speaker){
return 0;
}
+//static World *a;
+
void CUTSCENEEE(Mob *callee){
player->vel.x = 0;
- ui::dialogBox(player->name,":K.","No way I\'m gettin\' up this hill.");
+ ui::dialogBox(player->name,":K then","No way I\'m gettin\' up this hill.");
ui::waitForDialog();
- player->right = true;
+ //a = new World();//Arena(currentWorld,player);
+ //a->generate(300);
+ currentWorld = currentWorld->toRight;
+
+ /*player->right = true;
player->left = false;
- player->loc.x += HLINE * 5;
+ player->loc.x += HLINE * 5;*/
callee->alive = false;
}