add 1k to steal credits

maxglee profile
This commit is contained in:
Anthony Calosa
2017-02-26 09:36:32 +08:00
parent 7dc76876e4
commit 19f0c653d1

View File

@@ -487,7 +487,7 @@ void GameStateShop::Update(float dt)
menu->Add(22, _("Ask about...").c_str());
menu->Add(14, _("Check task board").c_str());
if (options[Options::CHEATMODE].number)
menu->Add(-2, _("Steal 1,000 credits").c_str());
menu->Add(-2, _("Steal 2,000 credits").c_str());
menu->Add(12, _("Save And Exit").c_str());
menu->Add(kCancelMenuID, _("Cancel").c_str());
}
@@ -860,7 +860,7 @@ void GameStateShop::ButtonPressed(int controllerId, int controlId)
beginFilters();
break;
case -2:
playerdata->credits += 1000;
playerdata->credits += 2000;
default:
mStage = STAGE_SHOP_SHOP;
}