From 7b8adc22f3e86320e100621009b9ef2dd8fefbc2 Mon Sep 17 00:00:00 2001 From: Milwaukee Davis Date: Mon, 19 Mar 2018 12:50:09 -0700 Subject: [PATCH] Update Boss.h to pass items to Player's inventory, not to hammerspace --- Boss.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Boss.h b/Boss.h index 14b6e51..4486610 100644 --- a/Boss.h +++ b/Boss.h @@ -32,7 +32,7 @@ class Boss { // Other Functions void summonBoss(int floorNum); void bossResponse(int floorNum, bool playerWon); - void giveBossItems(int floorNum, Inventory inventory); + void giveBossItems(int floorNum, Inventory &inventory); }; -- GitLab