aboutsummaryrefslogtreecommitdiffstats
path: root/src/gameplay.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-10-04 19:39:08 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-10-04 19:39:08 -0400
commite58c8920f5332678e4446a8c33bc74a716024010 (patch)
tree7cc26dfbf5c7999047a39659794eafcd00769d3d /src/gameplay.cpp
parent63dc9b399db9faef611c31629e0265b954d74197 (diff)
parenta277430f0ddde9ea2583f4b0c44fcafe8a2528bf (diff)
Added texture support and basic textures
Diffstat (limited to 'src/gameplay.cpp')
-rw-r--r--src/gameplay.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gameplay.cpp b/src/gameplay.cpp
index ad44eb2..9331828 100644
--- a/src/gameplay.cpp
+++ b/src/gameplay.cpp
@@ -18,7 +18,7 @@ int giveTestQuest(NPC *speaker){
int compTestQuest(NPC *speaker){
if(player->qh.hasQuest("Test")){
ui::dialogBox(speaker->name,"Ooo, that's a nice quest you got there. Lemme finish that for you ;).");
- player->qh.finish("Test");
+ player->qh.finish("Test",player);
return 0;
}else{
ui::dialogBox(speaker->name,"You need to get a quest from %s first.",entity[1]->name);
@@ -56,6 +56,7 @@ void initEverything(void){
switch(i){
case 1:
NPCp(entity[i])->addAIFunc(giveTestQuest);
+ entity[i]->inv->addItem(TEST_ITEM,3);
break;
case 2:
NPCp(entity[i])->addAIFunc(compTestQuest);