diff options
Diffstat (limited to 'src/entities.cpp')
-rw-r--r-- | src/entities.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/entities.cpp b/src/entities.cpp index 5c60386..8abc727 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -450,8 +450,12 @@ void NPC::interact(){ //have the npc's interact back to the player void Merchant::interact(){ ui::merchantBox(name, &bsinv, ":Accept:Good-Bye", false, "Welcome to Smithy\'s. Buy your sausages here you freaking meme lording screw-face"); - //ui::merchantBox(); ui::waitForDialog(); + if(ui::dialogOptChosen == 1){ + std::cout << "Gimme ye' munny" << std::endl; + }else{ + std::cout << "See ye!" << std::endl; + } } void Object::interact(void){ |