feat. (Repository): Add issue and pull request templates (#26)

This commit is contained in:
Walter Pagani 2023-07-12 06:30:52 -03:00 committed by GitHub
parent 1494dd61e8
commit 5961c1bd12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 142 additions and 10 deletions

View file

@ -293,14 +293,14 @@ public:
sWorld->SendServerMessage(SERVER_MSG_STRING, ss.str().c_str());
// Give the items to the player
player->AddItem(item1, 1); // Defined Item 1
player->AddItem(item2, 1); // Defined Item 2
player->AddItem(item1, 1); // Defined Item 1
player->AddItem(item2, 1); // Defined Item 2
// Give gold to the player
player->ModifyMoney(money*GOLD); // Defined Gold
player->ModifyMoney(money*GOLD); // Defined Gold
// Buff the player
player->CastSpell(player, spell); // Defined Spell
player->CastSpell(player, spell); // Defined Spell
// Issue a raid warning to the player
std::ostringstream ss2;