Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Market price adaptation mechanism #102

Merged
merged 7 commits into from
Sep 8, 2024
Prev Previous commit
Adjusted the license on the source files
kewinrausch committed Sep 7, 2024
commit a5d5757dd7b6e094a6aa2e2d2faf52b74bf1949c
2 changes: 1 addition & 1 deletion src/AuctionHouseBotAuctionHouseScript.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE
*/

#include "AuctionHouseMgr.h"
2 changes: 1 addition & 1 deletion src/AuctionHouseBotAuctionHouseScript.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE
*/

#ifndef AUCTION_HOUSE_BOT_AUCTION_HOUSE_SCRIPT_H
4 changes: 2 additions & 2 deletions src/AuctionHouseBotCommon.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE
*/

#include "AuctionHouseBot.h"
@@ -19,4 +19,4 @@ AHBConfig* gNeutralConfig = new AHBConfig(7);
//

std::set<uint32> gBotsId;
std::set<AuctionHouseBot*> gBots;
std::set<AuctionHouseBot*> gBots;
2 changes: 1 addition & 1 deletion src/AuctionHouseBotMailScript.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE
*/

#include "AuctionHouseBot.h"
4 changes: 2 additions & 2 deletions src/AuctionHouseBotMailScript.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE
*/

#ifndef AUCTION_HOUSE_BOT_MAIL_SCRIPT_H
@@ -20,4 +20,4 @@ class AHBot_MailScript : public MailScript
void OnBeforeMailDraftSendMailTo(MailDraft* mailDraft, MailReceiver const& receiver, MailSender const& sender, MailCheckMask& checked, uint32& deliver_delay, uint32& custom_expiration, bool& deleteMailItemsFromDB, bool& sendMail) override;
};

#endif /* AUCTION_HOUSE_BOT_MAIL_SCRIPT_H */
#endif /* AUCTION_HOUSE_BOT_MAIL_SCRIPT_H */
2 changes: 1 addition & 1 deletion src/AuctionHouseBotScript.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE
*/

#include "AuctionHouseBot.h"
2 changes: 1 addition & 1 deletion src/AuctionHouseBotWorldScript.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE
*/

#include "Config.h"
4 changes: 2 additions & 2 deletions src/AuctionHouseBotWorldScript.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE
*/

#ifndef AUCTION_HOUSE_BOT_WORLD_SCRIPT_H
@@ -24,4 +24,4 @@ class AHBot_WorldScript : public WorldScript
void OnStartup() override;
};

#endif /* AUCTION_HOUSE_BOT_WORLD_SCRIPT_H */
#endif /* AUCTION_HOUSE_BOT_WORLD_SCRIPT_H */
2 changes: 1 addition & 1 deletion src/ah_bot_loader.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE
* Copyright (C) 2021+ WarheadCore <https://github.com/WarheadCore>
*/