From 83daeaceb3a898a4b903562073d0e858be299e06 Mon Sep 17 00:00:00 2001 From: Eduardo Dantas Date: Thu, 22 Feb 2024 08:12:48 -0300 Subject: [PATCH 1/4] improve: disable save async by default (#2298) Due to reports of system crashes and various concurrency issues, asynchronous saving will be disabled by default as a precautionary measure. We encourage the community's continued support by reporting any instances of crashes or bugs. This will assist us in enhancing and ensuring the feature's reliability for production use. Until these issues are fully resolved, asynchronous saving will remain disabled. --- config.lua.dist | 2 + .../scripts/globalevents/save_interval.lua | 40 ------------------- .../scripts/globalevents}/save_interval.lua | 0 src/config/config_enums.hpp | 1 + src/config/configmanager.cpp | 1 + src/game/scheduling/save_manager.cpp | 14 +++++++ 6 files changed, 18 insertions(+), 40 deletions(-) delete mode 100644 data-canary/scripts/globalevents/save_interval.lua rename {data-otservbr-global/scripts/globalevents/customs => data/scripts/globalevents}/save_interval.lua (100%) diff --git a/config.lua.dist b/config.lua.dist index 3ba98113b19..6662140ecde 100644 --- a/config.lua.dist +++ b/config.lua.dist @@ -277,9 +277,11 @@ maxAllowedOnADummy = 1 -- Save interval per time -- NOTE: toggleSaveInterval: true = enable the save interval, false = disable the save interval +-- NOTE: toggleSaveAsync = true, will enable save async (experimental), not recommended for use in production -- NOTE: saveIntervalType: "minute", "second" or "hour" -- NOTE: toggleSaveIntervalCleanMap: true = enable the clean map, false = disable the clean map -- NOTE: saveIntervalTime: time based on what was set in "saveIntervalType" +toggleSaveAsync = false toggleSaveInterval = true saveIntervalType = "hour" toggleSaveIntervalCleanMap = true diff --git a/data-canary/scripts/globalevents/save_interval.lua b/data-canary/scripts/globalevents/save_interval.lua deleted file mode 100644 index 3e1c16326e4..00000000000 --- a/data-canary/scripts/globalevents/save_interval.lua +++ /dev/null @@ -1,40 +0,0 @@ -local function serverSave(interval) - if configManager.getBoolean(configKeys.TOGGLE_SAVE_INTERVAL_CLEAN_MAP) then - cleanMap() - end - - saveServer() - local message = "Server save complete. Next save in %d %ss!" - local messageSingle = "Server save complete. Next save in %d %s!" - Webhook.sendMessage("Server save", message, WEBHOOK_COLOR_WARNING) - if SAVE_INTERVAL_CONFIG_TIME > 1 then - Game.broadcastMessage(string.format(message, SAVE_INTERVAL_CONFIG_TIME, SAVE_INTERVAL_TYPE), MESSAGE_GAME_HIGHLIGHT) - logger.info(string.format(message, SAVE_INTERVAL_CONFIG_TIME, SAVE_INTERVAL_TYPE)) - else - Game.broadcastMessage(string.format(messageSingle, SAVE_INTERVAL_CONFIG_TIME, SAVE_INTERVAL_TYPE), MESSAGE_GAME_HIGHLIGHT) - logger.info(string.format(messageSingle, SAVE_INTERVAL_CONFIG_TIME, SAVE_INTERVAL_TYPE)) - end -end - -local save = GlobalEvent("save") - -function save.onTime(interval) - local remainingTime = 60 * 1000 - if configManager.getBoolean(configKeys.TOGGLE_SAVE_INTERVAL) then - local message = "The server will save all accounts within " .. (remainingTime / 1000) .. " seconds. \z - You might lag or freeze for 5 seconds, please find a safe place." - Game.broadcastMessage(message, MESSAGE_GAME_HIGHLIGHT) - logger.info(string.format(message, SAVE_INTERVAL_CONFIG_TIME, SAVE_INTERVAL_TYPE)) - addEvent(serverSave, remainingTime, interval) - return true - end - return not configManager.getBoolean(configKeys.TOGGLE_SAVE_INTERVAL) -end - -if SAVE_INTERVAL_TIME ~= 0 then - save:interval(SAVE_INTERVAL_CONFIG_TIME * SAVE_INTERVAL_TIME) -else - return logger.error("[save.onTime] - Save interval type '{}' is not valid, use 'second', 'minute' or 'hour'", SAVE_INTERVAL_TYPE) -end - -save:register() diff --git a/data-otservbr-global/scripts/globalevents/customs/save_interval.lua b/data/scripts/globalevents/save_interval.lua similarity index 100% rename from data-otservbr-global/scripts/globalevents/customs/save_interval.lua rename to data/scripts/globalevents/save_interval.lua diff --git a/src/config/config_enums.hpp b/src/config/config_enums.hpp index 8c21bdfe1ac..7b51bd0d778 100644 --- a/src/config/config_enums.hpp +++ b/src/config/config_enums.hpp @@ -284,6 +284,7 @@ enum ConfigKey_t : uint16_t { TOGGLE_MAP_CUSTOM, TOGGLE_MOUNT_IN_PZ, TOGGLE_RECEIVE_REWARD, + TOGGLE_SAVE_ASYNC, TOGGLE_SAVE_INTERVAL_CLEAN_MAP, TOGGLE_SAVE_INTERVAL, TOGGLE_SERVER_IS_RETRO, diff --git a/src/config/configmanager.cpp b/src/config/configmanager.cpp index 96c48ae2f69..4b626b9aa63 100644 --- a/src/config/configmanager.cpp +++ b/src/config/configmanager.cpp @@ -149,6 +149,7 @@ bool ConfigManager::load() { loadBoolConfig(L, TOGGLE_IMBUEMENT_SHRINE_STORAGE, "toggleImbuementShrineStorage", true); loadBoolConfig(L, TOGGLE_MOUNT_IN_PZ, "toggleMountInProtectionZone", false); loadBoolConfig(L, TOGGLE_RECEIVE_REWARD, "toggleReceiveReward", false); + loadBoolConfig(L, TOGGLE_SAVE_ASYNC, "toggleSaveAsync", false); loadBoolConfig(L, TOGGLE_SAVE_INTERVAL_CLEAN_MAP, "toggleSaveIntervalCleanMap", false); loadBoolConfig(L, TOGGLE_SAVE_INTERVAL, "toggleSaveInterval", false); loadBoolConfig(L, TOGGLE_SERVER_IS_RETRO, "toggleServerIsRetroPVP", false); diff --git a/src/game/scheduling/save_manager.cpp b/src/game/scheduling/save_manager.cpp index dfbcd04a0c6..6e8b76050ad 100644 --- a/src/game/scheduling/save_manager.cpp +++ b/src/game/scheduling/save_manager.cpp @@ -35,6 +35,12 @@ void SaveManager::scheduleAll() { auto scheduledAt = std::chrono::steady_clock::now(); m_scheduledAt = scheduledAt; + // Disable save async if the config is set to false + if (!g_configManager().getBoolean(TOGGLE_SAVE_ASYNC, __FUNCTION__)) { + saveAll(); + return; + } + threadPool.addLoad([this, scheduledAt]() { if (m_scheduledAt.load() != scheduledAt) { logger.warn("Skipping save for server because another save has been scheduled."); @@ -50,6 +56,14 @@ void SaveManager::schedulePlayer(std::weak_ptr playerPtr) { logger.debug("Skipping save for player because player is no longer online."); return; } + + // Disable save async if the config is set to false + if (!g_configManager().getBoolean(TOGGLE_SAVE_ASYNC, __FUNCTION__)) { + logger.debug("Saving player {}.", playerToSave->getName()); + doSavePlayer(playerToSave); + return; + } + logger.debug("Scheduling player {} for saving.", playerToSave->getName()); auto scheduledAt = std::chrono::steady_clock::now(); m_playerMap[playerToSave->getGUID()] = scheduledAt; From 726d425fadc756048ab592714e54d7b07e75c9bb Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 22 Feb 2024 08:14:23 -0300 Subject: [PATCH 2/4] Update copyright year and fix visual solution build (#2297) Co-authored-by: Eduardo Dantas --- .github/workflows/build-windows-solution.yml | 8 +++-- src/account/account.cpp | 2 +- src/account/account.hpp | 2 +- src/account/account_info.hpp | 2 +- src/account/account_repository.cpp | 2 +- src/account/account_repository.hpp | 2 +- src/account/account_repository_db.cpp | 2 +- src/account/account_repository_db.hpp | 2 +- src/canary_server.cpp | 2 +- src/canary_server.hpp | 2 +- src/config/config_enums.hpp | 2 +- src/config/configmanager.cpp | 2 +- src/config/configmanager.hpp | 2 +- src/core.hpp | 2 +- src/creatures/appearance/mounts/mounts.cpp | 2 +- src/creatures/appearance/mounts/mounts.hpp | 2 +- src/creatures/appearance/outfit/outfit.cpp | 2 +- src/creatures/appearance/outfit/outfit.hpp | 2 +- src/creatures/combat/combat.cpp | 2 +- src/creatures/combat/combat.hpp | 2 +- src/creatures/combat/condition.cpp | 2 +- src/creatures/combat/condition.hpp | 2 +- src/creatures/combat/spells.cpp | 2 +- src/creatures/combat/spells.hpp | 2 +- src/creatures/creature.cpp | 2 +- src/creatures/creature.hpp | 2 +- src/creatures/creatures_definitions.hpp | 2 +- src/creatures/interactions/chat.cpp | 2 +- src/creatures/interactions/chat.hpp | 2 +- src/creatures/monsters/monster.cpp | 2 +- src/creatures/monsters/monster.hpp | 2 +- src/creatures/monsters/monsters.cpp | 2 +- src/creatures/monsters/monsters.hpp | 2 +- .../monsters/spawns/spawn_monster.cpp | 2 +- .../monsters/spawns/spawn_monster.hpp | 2 +- src/creatures/npcs/npc.cpp | 2 +- src/creatures/npcs/npc.hpp | 2 +- src/creatures/npcs/npcs.cpp | 2 +- src/creatures/npcs/npcs.hpp | 2 +- src/creatures/npcs/spawns/spawn_npc.cpp | 2 +- src/creatures/npcs/spawns/spawn_npc.hpp | 2 +- .../achievement/player_achievement.cpp | 2 +- .../achievement/player_achievement.hpp | 2 +- src/creatures/players/grouping/familiars.cpp | 2 +- src/creatures/players/grouping/familiars.hpp | 2 +- src/creatures/players/grouping/groups.cpp | 2 +- src/creatures/players/grouping/groups.hpp | 2 +- src/creatures/players/grouping/guild.cpp | 2 +- src/creatures/players/grouping/guild.hpp | 2 +- src/creatures/players/grouping/party.cpp | 2 +- src/creatures/players/grouping/party.hpp | 2 +- .../players/grouping/team_finder.hpp | 2 +- src/creatures/players/highscore_category.hpp | 2 +- .../players/imbuements/imbuements.cpp | 2 +- .../players/imbuements/imbuements.hpp | 2 +- src/creatures/players/management/ban.cpp | 2 +- src/creatures/players/management/ban.hpp | 2 +- src/creatures/players/management/waitlist.cpp | 2 +- src/creatures/players/management/waitlist.hpp | 2 +- src/creatures/players/player.cpp | 2 +- src/creatures/players/player.hpp | 2 +- src/creatures/players/storages/storages.cpp | 2 +- src/creatures/players/storages/storages.hpp | 2 +- src/creatures/players/vocations/vocation.cpp | 2 +- src/creatures/players/vocations/vocation.hpp | 2 +- src/creatures/players/wheel/player_wheel.cpp | 2 +- src/creatures/players/wheel/player_wheel.hpp | 2 +- .../players/wheel/wheel_definitions.hpp | 2 +- src/creatures/players/wheel/wheel_gems.cpp | 2 +- src/creatures/players/wheel/wheel_gems.hpp | 2 +- src/database/database.cpp | 2 +- src/database/database.hpp | 2 +- src/database/database_definitions.hpp | 2 +- src/database/databasemanager.cpp | 2 +- src/database/databasemanager.hpp | 2 +- src/database/databasetasks.cpp | 2 +- src/database/databasetasks.hpp | 2 +- src/declarations.hpp | 2 +- src/enums/account_coins.hpp | 2 +- src/enums/account_errors.hpp | 2 +- src/enums/account_group_type.hpp | 2 +- src/enums/account_type.hpp | 2 +- src/enums/forge_conversion.hpp | 2 +- src/enums/item_attribute.hpp | 2 +- src/enums/lua_variant_type.hpp | 2 +- src/enums/object_category.hpp | 2 +- src/game/bank/bank.cpp | 2 +- src/game/bank/bank.hpp | 2 +- src/game/functions/game_reload.cpp | 2 +- src/game/functions/game_reload.hpp | 2 +- src/game/game.cpp | 2 +- src/game/game.hpp | 2 +- src/game/game_definitions.hpp | 2 +- src/game/modal_window/modal_window.hpp | 2 +- src/game/movement/position.cpp | 2 +- src/game/movement/position.hpp | 2 +- src/game/movement/teleport.cpp | 2 +- src/game/movement/teleport.hpp | 2 +- src/game/scheduling/dispatcher.cpp | 2 +- src/game/scheduling/dispatcher.hpp | 2 +- src/game/scheduling/events_scheduler.cpp | 2 +- src/game/scheduling/events_scheduler.hpp | 2 +- src/game/scheduling/save_manager.hpp | 2 +- src/game/scheduling/task.cpp | 2 +- src/game/scheduling/task.hpp | 2 +- src/game/zones/zone.cpp | 2 +- src/game/zones/zone.hpp | 2 +- src/io/fileloader.cpp | 2 +- src/io/fileloader.hpp | 2 +- src/io/filestream.cpp | 2 +- src/io/filestream.hpp | 2 +- src/io/functions/iologindata_load_player.cpp | 2 +- src/io/functions/iologindata_load_player.hpp | 2 +- src/io/functions/iologindata_save_player.cpp | 2 +- src/io/functions/iologindata_save_player.hpp | 2 +- src/io/io_bosstiary.cpp | 2 +- src/io/io_bosstiary.hpp | 2 +- src/io/io_definitions.hpp | 2 +- src/io/io_wheel.cpp | 2 +- src/io/io_wheel.hpp | 2 +- src/io/iobestiary.cpp | 2 +- src/io/iobestiary.hpp | 2 +- src/io/ioguild.cpp | 2 +- src/io/ioguild.hpp | 2 +- src/io/iologindata.cpp | 2 +- src/io/iologindata.hpp | 2 +- src/io/iomap.cpp | 2 +- src/io/iomap.hpp | 2 +- src/io/iomapserialize.cpp | 2 +- src/io/iomapserialize.hpp | 2 +- src/io/iomarket.cpp | 2 +- src/io/iomarket.hpp | 2 +- src/io/ioprey.cpp | 2 +- src/io/ioprey.hpp | 2 +- src/items/bed.cpp | 2 +- src/items/bed.hpp | 2 +- src/items/containers/container.cpp | 2 +- src/items/containers/container.hpp | 2 +- src/items/containers/depot/depotchest.cpp | 2 +- src/items/containers/depot/depotchest.hpp | 2 +- src/items/containers/depot/depotlocker.cpp | 2 +- src/items/containers/depot/depotlocker.hpp | 2 +- src/items/containers/inbox/inbox.cpp | 2 +- src/items/containers/inbox/inbox.hpp | 2 +- src/items/containers/mailbox/mailbox.cpp | 2 +- src/items/containers/mailbox/mailbox.hpp | 2 +- src/items/containers/rewards/reward.cpp | 2 +- src/items/containers/rewards/reward.hpp | 2 +- src/items/containers/rewards/rewardchest.cpp | 2 +- src/items/containers/rewards/rewardchest.hpp | 2 +- src/items/cylinder.cpp | 2 +- src/items/cylinder.hpp | 2 +- src/items/decay/decay.cpp | 2 +- src/items/decay/decay.hpp | 2 +- src/items/functions/item/attribute.cpp | 2 +- src/items/functions/item/attribute.hpp | 2 +- src/items/functions/item/custom_attribute.cpp | 2 +- src/items/functions/item/custom_attribute.hpp | 2 +- src/items/functions/item/item_parse.cpp | 2 +- src/items/functions/item/item_parse.hpp | 2 +- src/items/item.cpp | 2 +- src/items/item.hpp | 2 +- src/items/items.cpp | 2 +- src/items/items.hpp | 2 +- src/items/items_classification.hpp | 2 +- src/items/items_definitions.hpp | 2 +- src/items/thing.cpp | 2 +- src/items/thing.hpp | 2 +- src/items/tile.cpp | 2 +- src/items/tile.hpp | 2 +- src/items/trashholder.cpp | 2 +- src/items/trashholder.hpp | 2 +- src/items/weapons/weapons.cpp | 2 +- src/items/weapons/weapons.hpp | 2 +- src/kv/kv.cpp | 2 +- src/kv/kv.hpp | 2 +- src/kv/kv_sql.cpp | 2 +- src/kv/kv_sql.hpp | 2 +- src/kv/value_wrapper.cpp | 2 +- src/kv/value_wrapper.hpp | 2 +- src/kv/value_wrapper_proto.cpp | 2 +- src/kv/value_wrapper_proto.hpp | 2 +- src/lib/di/container.hpp | 2 +- src/lib/logging/log_with_spd_log.cpp | 2 +- src/lib/logging/log_with_spd_log.hpp | 2 +- src/lib/logging/logger.hpp | 2 +- src/lib/messaging/command.hpp | 2 +- src/lib/messaging/event.hpp | 2 +- src/lib/messaging/message.hpp | 2 +- src/lib/metrics/metrics.cpp | 2 +- src/lib/metrics/metrics.hpp | 2 +- src/lib/thread/thread_pool.cpp | 2 +- src/lib/thread/thread_pool.hpp | 2 +- src/lua/callbacks/callbacks_definitions.hpp | 2 +- src/lua/callbacks/creaturecallback.cpp | 2 +- src/lua/callbacks/creaturecallback.hpp | 2 +- src/lua/callbacks/event_callback.cpp | 2 +- src/lua/callbacks/event_callback.hpp | 2 +- src/lua/callbacks/events_callbacks.cpp | 2 +- src/lua/callbacks/events_callbacks.hpp | 2 +- src/lua/creature/actions.cpp | 2 +- src/lua/creature/actions.hpp | 2 +- src/lua/creature/creatureevent.cpp | 2 +- src/lua/creature/creatureevent.hpp | 2 +- src/lua/creature/events.cpp | 2 +- src/lua/creature/events.hpp | 2 +- src/lua/creature/movement.cpp | 2 +- src/lua/creature/movement.hpp | 2 +- src/lua/creature/raids.cpp | 2 +- src/lua/creature/raids.hpp | 2 +- src/lua/creature/talkaction.cpp | 2 +- src/lua/creature/talkaction.hpp | 2 +- src/lua/functions/core/core_functions.hpp | 2 +- .../functions/core/game/bank_functions.hpp | 2 +- .../functions/core/game/config_functions.cpp | 2 +- .../functions/core/game/config_functions.hpp | 2 +- .../core/game/core_game_functions.hpp | 2 +- .../functions/core/game/game_functions.cpp | 2 +- .../functions/core/game/game_functions.hpp | 2 +- .../functions/core/game/global_functions.cpp | 2 +- .../functions/core/game/global_functions.hpp | 2 +- src/lua/functions/core/game/lua_enums.cpp | 2 +- src/lua/functions/core/game/lua_enums.hpp | 2 +- .../core/game/modal_window_functions.cpp | 2 +- .../core/game/modal_window_functions.hpp | 2 +- src/lua/functions/core/libs/bit_functions.cpp | 2 +- src/lua/functions/core/libs/bit_functions.hpp | 2 +- .../core/libs/core_libs_functions.hpp | 2 +- src/lua/functions/core/libs/db_functions.cpp | 2 +- src/lua/functions/core/libs/db_functions.hpp | 2 +- src/lua/functions/core/libs/kv_functions.cpp | 2 +- src/lua/functions/core/libs/kv_functions.hpp | 2 +- .../functions/core/libs/logger_functions.cpp | 2 +- .../functions/core/libs/logger_functions.hpp | 2 +- .../functions/core/libs/metrics_functions.cpp | 2 +- .../functions/core/libs/metrics_functions.hpp | 2 +- .../functions/core/libs/result_functions.cpp | 2 +- .../functions/core/libs/result_functions.hpp | 2 +- .../core/network/core_network_functions.hpp | 2 +- .../network/network_message_functions.cpp | 2 +- .../network/network_message_functions.hpp | 2 +- .../core/network/webhook_functions.cpp | 2 +- .../core/network/webhook_functions.hpp | 2 +- .../creatures/combat/combat_functions.cpp | 2 +- .../creatures/combat/combat_functions.hpp | 2 +- .../creatures/combat/condition_functions.cpp | 2 +- .../creatures/combat/condition_functions.hpp | 2 +- .../creatures/combat/spell_functions.cpp | 2 +- .../creatures/combat/spell_functions.hpp | 2 +- .../creatures/combat/variant_functions.cpp | 2 +- .../creatures/combat/variant_functions.hpp | 2 +- .../creatures/creature_functions.cpp | 2 +- .../creatures/creature_functions.hpp | 2 +- .../creatures/monster/charm_functions.cpp | 2 +- .../creatures/monster/charm_functions.hpp | 2 +- .../creatures/monster/loot_functions.cpp | 2 +- .../creatures/monster/loot_functions.hpp | 2 +- .../creatures/monster/monster_functions.cpp | 2 +- .../creatures/monster/monster_functions.hpp | 2 +- .../monster/monster_spell_functions.cpp | 2 +- .../monster/monster_spell_functions.hpp | 2 +- .../monster/monster_type_functions.cpp | 2 +- .../monster/monster_type_functions.hpp | 2 +- .../functions/creatures/npc/npc_functions.cpp | 2 +- .../functions/creatures/npc/npc_functions.hpp | 2 +- .../creatures/npc/npc_type_functions.cpp | 2 +- .../creatures/npc/npc_type_functions.hpp | 2 +- .../creatures/npc/shop_functions.cpp | 2 +- .../creatures/npc/shop_functions.hpp | 2 +- .../creatures/player/group_functions.cpp | 2 +- .../creatures/player/group_functions.hpp | 2 +- .../creatures/player/guild_functions.cpp | 2 +- .../creatures/player/guild_functions.hpp | 2 +- .../creatures/player/mount_functions.cpp | 2 +- .../creatures/player/mount_functions.hpp | 2 +- .../creatures/player/party_functions.cpp | 2 +- .../creatures/player/party_functions.hpp | 2 +- .../creatures/player/player_functions.cpp | 2 +- .../creatures/player/player_functions.hpp | 2 +- .../creatures/player/vocation_functions.cpp | 2 +- .../creatures/player/vocation_functions.hpp | 2 +- src/lua/functions/events/action_functions.cpp | 2 +- src/lua/functions/events/action_functions.hpp | 2 +- .../events/creature_event_functions.cpp | 2 +- .../events/creature_event_functions.hpp | 2 +- .../events/event_callback_functions.cpp | 2 +- .../events/event_callback_functions.hpp | 2 +- src/lua/functions/events/events_functions.hpp | 2 +- .../events/events_scheduler_functions.cpp | 2 +- .../events/events_scheduler_functions.hpp | 2 +- .../events/global_event_functions.cpp | 2 +- .../events/global_event_functions.hpp | 2 +- .../functions/events/move_event_functions.cpp | 2 +- .../functions/events/move_event_functions.hpp | 2 +- .../events/talk_action_functions.cpp | 2 +- .../events/talk_action_functions.hpp | 2 +- .../functions/items/container_functions.cpp | 2 +- .../functions/items/container_functions.hpp | 2 +- .../functions/items/imbuement_functions.cpp | 2 +- .../functions/items/imbuement_functions.hpp | 2 +- .../items/item_classification_functions.cpp | 2 +- .../items/item_classification_functions.hpp | 2 +- src/lua/functions/items/item_functions.cpp | 2 +- src/lua/functions/items/item_functions.hpp | 2 +- .../functions/items/item_type_functions.cpp | 2 +- .../functions/items/item_type_functions.hpp | 2 +- src/lua/functions/items/weapon_functions.cpp | 2 +- src/lua/functions/items/weapon_functions.hpp | 2 +- src/lua/functions/lua_functions_loader.cpp | 2 +- src/lua/functions/lua_functions_loader.hpp | 2 +- src/lua/functions/map/house_functions.cpp | 2 +- src/lua/functions/map/house_functions.hpp | 2 +- src/lua/functions/map/map_functions.hpp | 2 +- src/lua/functions/map/position_functions.cpp | 2 +- src/lua/functions/map/position_functions.hpp | 2 +- src/lua/functions/map/teleport_functions.cpp | 2 +- src/lua/functions/map/teleport_functions.hpp | 2 +- src/lua/functions/map/tile_functions.cpp | 2 +- src/lua/functions/map/tile_functions.hpp | 2 +- src/lua/functions/map/town_functions.cpp | 2 +- src/lua/functions/map/town_functions.hpp | 2 +- src/lua/global/baseevents.cpp | 2 +- src/lua/global/baseevents.hpp | 2 +- src/lua/global/globalevent.cpp | 2 +- src/lua/global/globalevent.hpp | 2 +- src/lua/global/lua_timer_event_descr.hpp | 2 +- src/lua/global/lua_variant.hpp | 2 +- src/lua/global/shared_object.hpp | 2 +- src/lua/lua_definitions.hpp | 2 +- src/lua/modules/modules.cpp | 2 +- src/lua/modules/modules.hpp | 2 +- src/lua/scripts/lua_environment.cpp | 2 +- src/lua/scripts/lua_environment.hpp | 2 +- src/lua/scripts/luajit_sync.hpp | 2 +- src/lua/scripts/luascript.cpp | 2 +- src/lua/scripts/luascript.hpp | 2 +- src/lua/scripts/script_environment.cpp | 2 +- src/lua/scripts/script_environment.hpp | 2 +- src/lua/scripts/scripts.cpp | 2 +- src/lua/scripts/scripts.hpp | 2 +- src/main.cpp | 2 +- src/map/house/house.cpp | 2 +- src/map/house/house.hpp | 2 +- src/map/house/housetile.cpp | 2 +- src/map/house/housetile.hpp | 2 +- src/map/map.cpp | 2 +- src/map/map.hpp | 2 +- src/map/map_definitions.hpp | 2 +- src/map/mapcache.cpp | 2 +- src/map/spectators.cpp | 2 +- src/map/spectators.hpp | 2 +- src/map/town.hpp | 2 +- src/pch.hpp | 2 +- src/security/argon.cpp | 2 +- src/security/argon.hpp | 2 +- src/security/rsa.cpp | 2 +- src/security/rsa.hpp | 2 +- src/server/network/connection/connection.cpp | 2 +- src/server/network/connection/connection.hpp | 2 +- src/server/network/message/networkmessage.cpp | 2 +- src/server/network/message/networkmessage.hpp | 2 +- src/server/network/message/outputmessage.cpp | 2 +- src/server/network/message/outputmessage.hpp | 2 +- src/server/network/protocol/protocol.cpp | 2 +- src/server/network/protocol/protocol.hpp | 2 +- src/server/network/protocol/protocolgame.cpp | 2 +- src/server/network/protocol/protocolgame.hpp | 2 +- src/server/network/protocol/protocollogin.cpp | 2 +- src/server/network/protocol/protocollogin.hpp | 2 +- .../network/protocol/protocolstatus.cpp | 2 +- .../network/protocol/protocolstatus.hpp | 2 +- src/server/network/webhook/webhook.cpp | 2 +- src/server/network/webhook/webhook.hpp | 2 +- src/server/server.cpp | 2 +- src/server/server.hpp | 2 +- src/server/server_definitions.hpp | 2 +- src/server/signals.cpp | 2 +- src/server/signals.hpp | 2 +- src/utils/arraylist.hpp | 2 +- src/utils/benchmark.hpp | 2 +- src/utils/const.hpp | 2 +- src/utils/definitions.hpp | 2 +- src/utils/pugicast.cpp | 2 +- src/utils/pugicast.hpp | 2 +- src/utils/simd.hpp | 2 +- src/utils/tools.cpp | 2 +- src/utils/tools.hpp | 2 +- src/utils/utils_definitions.hpp | 2 +- src/utils/vectorset.hpp | 2 +- src/utils/vectorsort.hpp | 2 +- src/utils/wildcardtree.cpp | 2 +- src/utils/wildcardtree.hpp | 2 +- .../account/in_memory_account_repository.hpp | 2 +- tests/fixture/kv/in_memory_kv.hpp | 2 +- .../fixture/lib/logging/in_memory_logger.hpp | 2 +- tests/unit/lib/logging/in_memory_logger.hpp | 2 +- vcpkg.json | 9 +++-- vcproj/settings.props | 36 +++++++++++++++---- 398 files changed, 438 insertions(+), 405 deletions(-) diff --git a/.github/workflows/build-windows-solution.yml b/.github/workflows/build-windows-solution.yml index 4b2f5fb306c..f662fa91607 100644 --- a/.github/workflows/build-windows-solution.yml +++ b/.github/workflows/build-windows-solution.yml @@ -53,10 +53,14 @@ jobs: - name: Install vcpkg run: | + $vcpkgJson = Get-Content .\vcpkg.json -Raw | ConvertFrom-Json + $vcpkgCommitId = $vcpkgJson.'builtin-baseline'.Trim() + Write-Host "vcpkg commit ID: $vcpkgCommitId" git clone https://github.com/Microsoft/vcpkg.git cd vcpkg - ./bootstrap-vcpkg.bat - ./vcpkg integrate install + git checkout $vcpkgCommitId + .\bootstrap-vcpkg.bat + .\vcpkg integrate install - name: Print useful paths run: | diff --git a/src/account/account.cpp b/src/account/account.cpp index 700ec44a64d..2e5f58dd864 100644 --- a/src/account/account.cpp +++ b/src/account/account.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/account/account.hpp b/src/account/account.hpp index 6ce50e1e0eb..d968ba8ddfb 100644 --- a/src/account/account.hpp +++ b/src/account/account.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/account/account_info.hpp b/src/account/account_info.hpp index 1488c7e26a3..698c3b96c1c 100644 --- a/src/account/account_info.hpp +++ b/src/account/account_info.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/account/account_repository.cpp b/src/account/account_repository.cpp index b7ff20e9353..babca847043 100644 --- a/src/account/account_repository.cpp +++ b/src/account/account_repository.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/account/account_repository.hpp b/src/account/account_repository.hpp index 8625e8b588e..0d4dcc7abcf 100644 --- a/src/account/account_repository.hpp +++ b/src/account/account_repository.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/account/account_repository_db.cpp b/src/account/account_repository_db.cpp index 7e39c2e8ee2..cfe1f1d05be 100644 --- a/src/account/account_repository_db.cpp +++ b/src/account/account_repository_db.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/account/account_repository_db.hpp b/src/account/account_repository_db.hpp index 6de39506b04..651600e3bc4 100644 --- a/src/account/account_repository_db.hpp +++ b/src/account/account_repository_db.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/canary_server.cpp b/src/canary_server.cpp index 1a2454a9ad0..9bc7077c92c 100644 --- a/src/canary_server.cpp +++ b/src/canary_server.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/canary_server.hpp b/src/canary_server.hpp index d9374309c4a..bb22232b8e4 100644 --- a/src/canary_server.hpp +++ b/src/canary_server.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/config/config_enums.hpp b/src/config/config_enums.hpp index 7b51bd0d778..b2a1f3aafe2 100644 --- a/src/config/config_enums.hpp +++ b/src/config/config_enums.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/config/configmanager.cpp b/src/config/configmanager.cpp index 4b626b9aa63..dd643425706 100644 --- a/src/config/configmanager.cpp +++ b/src/config/configmanager.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/config/configmanager.hpp b/src/config/configmanager.hpp index f57e2de8466..406ff69891e 100644 --- a/src/config/configmanager.hpp +++ b/src/config/configmanager.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/core.hpp b/src/core.hpp index 8ca52d107da..ad64df77646 100644 --- a/src/core.hpp +++ b/src/core.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/appearance/mounts/mounts.cpp b/src/creatures/appearance/mounts/mounts.cpp index e28b34ea7d4..dff0f02a451 100644 --- a/src/creatures/appearance/mounts/mounts.cpp +++ b/src/creatures/appearance/mounts/mounts.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/appearance/mounts/mounts.hpp b/src/creatures/appearance/mounts/mounts.hpp index fea303203b6..05bd330a66b 100644 --- a/src/creatures/appearance/mounts/mounts.hpp +++ b/src/creatures/appearance/mounts/mounts.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/appearance/outfit/outfit.cpp b/src/creatures/appearance/outfit/outfit.cpp index 5425f7fed31..6f0490339de 100644 --- a/src/creatures/appearance/outfit/outfit.cpp +++ b/src/creatures/appearance/outfit/outfit.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/appearance/outfit/outfit.hpp b/src/creatures/appearance/outfit/outfit.hpp index ff27e4448f0..e1a5143c673 100644 --- a/src/creatures/appearance/outfit/outfit.hpp +++ b/src/creatures/appearance/outfit/outfit.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/combat/combat.cpp b/src/creatures/combat/combat.cpp index c8edeedf07d..36b90ca1eba 100644 --- a/src/creatures/combat/combat.cpp +++ b/src/creatures/combat/combat.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/combat/combat.hpp b/src/creatures/combat/combat.hpp index 71554b3761d..c7d886a7fd2 100644 --- a/src/creatures/combat/combat.hpp +++ b/src/creatures/combat/combat.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/combat/condition.cpp b/src/creatures/combat/condition.cpp index 9549abd4014..d54a3deb1d0 100644 --- a/src/creatures/combat/condition.cpp +++ b/src/creatures/combat/condition.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/combat/condition.hpp b/src/creatures/combat/condition.hpp index 28d637b8b87..1cffba99b50 100644 --- a/src/creatures/combat/condition.hpp +++ b/src/creatures/combat/condition.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/combat/spells.cpp b/src/creatures/combat/spells.cpp index e41c1cf5194..60cc5e7d2a9 100644 --- a/src/creatures/combat/spells.cpp +++ b/src/creatures/combat/spells.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/combat/spells.hpp b/src/creatures/combat/spells.hpp index 804ec62f930..c33deeeb948 100644 --- a/src/creatures/combat/spells.hpp +++ b/src/creatures/combat/spells.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/creature.cpp b/src/creatures/creature.cpp index b917a23d640..d17ee454402 100644 --- a/src/creatures/creature.cpp +++ b/src/creatures/creature.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/creature.hpp b/src/creatures/creature.hpp index a21403edcef..4acbacb570a 100644 --- a/src/creatures/creature.hpp +++ b/src/creatures/creature.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/creatures_definitions.hpp b/src/creatures/creatures_definitions.hpp index 674f0b6775c..46fb5fe5979 100644 --- a/src/creatures/creatures_definitions.hpp +++ b/src/creatures/creatures_definitions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/interactions/chat.cpp b/src/creatures/interactions/chat.cpp index ec3472d7bc6..f30c3f219e3 100644 --- a/src/creatures/interactions/chat.cpp +++ b/src/creatures/interactions/chat.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/interactions/chat.hpp b/src/creatures/interactions/chat.hpp index 36768fa4f44..022b3f540a1 100644 --- a/src/creatures/interactions/chat.hpp +++ b/src/creatures/interactions/chat.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/monsters/monster.cpp b/src/creatures/monsters/monster.cpp index 6fbed225215..5f31c67aa72 100644 --- a/src/creatures/monsters/monster.cpp +++ b/src/creatures/monsters/monster.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/monsters/monster.hpp b/src/creatures/monsters/monster.hpp index be95bb80d74..edf3874161d 100644 --- a/src/creatures/monsters/monster.hpp +++ b/src/creatures/monsters/monster.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/monsters/monsters.cpp b/src/creatures/monsters/monsters.cpp index 463238e913a..190c14c76e5 100644 --- a/src/creatures/monsters/monsters.cpp +++ b/src/creatures/monsters/monsters.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/monsters/monsters.hpp b/src/creatures/monsters/monsters.hpp index ab18ca6c9d6..0fa2a3d88db 100644 --- a/src/creatures/monsters/monsters.hpp +++ b/src/creatures/monsters/monsters.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/monsters/spawns/spawn_monster.cpp b/src/creatures/monsters/spawns/spawn_monster.cpp index c0f2fb382e8..aec222d723a 100644 --- a/src/creatures/monsters/spawns/spawn_monster.cpp +++ b/src/creatures/monsters/spawns/spawn_monster.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/monsters/spawns/spawn_monster.hpp b/src/creatures/monsters/spawns/spawn_monster.hpp index bf83e5dec0a..800b36fda5a 100644 --- a/src/creatures/monsters/spawns/spawn_monster.hpp +++ b/src/creatures/monsters/spawns/spawn_monster.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/npcs/npc.cpp b/src/creatures/npcs/npc.cpp index 7fe61491efd..0f9f60cec9b 100644 --- a/src/creatures/npcs/npc.cpp +++ b/src/creatures/npcs/npc.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/npcs/npc.hpp b/src/creatures/npcs/npc.hpp index 393b24867a1..2d4e87ac7b8 100644 --- a/src/creatures/npcs/npc.hpp +++ b/src/creatures/npcs/npc.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/npcs/npcs.cpp b/src/creatures/npcs/npcs.cpp index 50fff3aa75b..ecfd2750a94 100644 --- a/src/creatures/npcs/npcs.cpp +++ b/src/creatures/npcs/npcs.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/npcs/npcs.hpp b/src/creatures/npcs/npcs.hpp index 48170a94fd4..1a984abf2e8 100644 --- a/src/creatures/npcs/npcs.hpp +++ b/src/creatures/npcs/npcs.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/npcs/spawns/spawn_npc.cpp b/src/creatures/npcs/spawns/spawn_npc.cpp index 68fa0c2407b..7fd99d6c37f 100644 --- a/src/creatures/npcs/spawns/spawn_npc.cpp +++ b/src/creatures/npcs/spawns/spawn_npc.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/npcs/spawns/spawn_npc.hpp b/src/creatures/npcs/spawns/spawn_npc.hpp index dccc1a75e62..d02a83e80c5 100644 --- a/src/creatures/npcs/spawns/spawn_npc.hpp +++ b/src/creatures/npcs/spawns/spawn_npc.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/achievement/player_achievement.cpp b/src/creatures/players/achievement/player_achievement.cpp index de2f458e133..18e2db3d3f2 100644 --- a/src/creatures/players/achievement/player_achievement.cpp +++ b/src/creatures/players/achievement/player_achievement.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/achievement/player_achievement.hpp b/src/creatures/players/achievement/player_achievement.hpp index 97a0d0465bd..8959ce429ca 100644 --- a/src/creatures/players/achievement/player_achievement.hpp +++ b/src/creatures/players/achievement/player_achievement.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/grouping/familiars.cpp b/src/creatures/players/grouping/familiars.cpp index 58b0116fbb5..538519685c3 100644 --- a/src/creatures/players/grouping/familiars.cpp +++ b/src/creatures/players/grouping/familiars.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/grouping/familiars.hpp b/src/creatures/players/grouping/familiars.hpp index 012cca1e9df..aae9b34e227 100644 --- a/src/creatures/players/grouping/familiars.hpp +++ b/src/creatures/players/grouping/familiars.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/grouping/groups.cpp b/src/creatures/players/grouping/groups.cpp index 639837dabdc..40dd13bc385 100644 --- a/src/creatures/players/grouping/groups.cpp +++ b/src/creatures/players/grouping/groups.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/grouping/groups.hpp b/src/creatures/players/grouping/groups.hpp index f27ca61ad81..3d74564173d 100644 --- a/src/creatures/players/grouping/groups.hpp +++ b/src/creatures/players/grouping/groups.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/grouping/guild.cpp b/src/creatures/players/grouping/guild.cpp index 14b59b8e9d5..aca512f28e3 100644 --- a/src/creatures/players/grouping/guild.cpp +++ b/src/creatures/players/grouping/guild.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/grouping/guild.hpp b/src/creatures/players/grouping/guild.hpp index ee16c469c26..834eb03252c 100644 --- a/src/creatures/players/grouping/guild.hpp +++ b/src/creatures/players/grouping/guild.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/grouping/party.cpp b/src/creatures/players/grouping/party.cpp index e78e4edddf0..880fc77594f 100644 --- a/src/creatures/players/grouping/party.cpp +++ b/src/creatures/players/grouping/party.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/grouping/party.hpp b/src/creatures/players/grouping/party.hpp index d4c0cea0b35..a356d1a032b 100644 --- a/src/creatures/players/grouping/party.hpp +++ b/src/creatures/players/grouping/party.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/grouping/team_finder.hpp b/src/creatures/players/grouping/team_finder.hpp index 609ce0f673f..123ce7c07d8 100644 --- a/src/creatures/players/grouping/team_finder.hpp +++ b/src/creatures/players/grouping/team_finder.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/highscore_category.hpp b/src/creatures/players/highscore_category.hpp index b195e2a596c..b387199f315 100644 --- a/src/creatures/players/highscore_category.hpp +++ b/src/creatures/players/highscore_category.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/imbuements/imbuements.cpp b/src/creatures/players/imbuements/imbuements.cpp index 093eae3c956..ed312dbf8e1 100644 --- a/src/creatures/players/imbuements/imbuements.cpp +++ b/src/creatures/players/imbuements/imbuements.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/imbuements/imbuements.hpp b/src/creatures/players/imbuements/imbuements.hpp index 69c5219a0d8..265e813aa1c 100644 --- a/src/creatures/players/imbuements/imbuements.hpp +++ b/src/creatures/players/imbuements/imbuements.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/management/ban.cpp b/src/creatures/players/management/ban.cpp index 3315836ebea..d81045c5344 100644 --- a/src/creatures/players/management/ban.cpp +++ b/src/creatures/players/management/ban.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/management/ban.hpp b/src/creatures/players/management/ban.hpp index 576f2f16acf..6fdb94296df 100644 --- a/src/creatures/players/management/ban.hpp +++ b/src/creatures/players/management/ban.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/management/waitlist.cpp b/src/creatures/players/management/waitlist.cpp index f2bfa8e4204..345c20f2650 100644 --- a/src/creatures/players/management/waitlist.cpp +++ b/src/creatures/players/management/waitlist.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/management/waitlist.hpp b/src/creatures/players/management/waitlist.hpp index 28b65c7cad0..24752f2647d 100644 --- a/src/creatures/players/management/waitlist.hpp +++ b/src/creatures/players/management/waitlist.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/player.cpp b/src/creatures/players/player.cpp index 28460082e73..011d762e57a 100644 --- a/src/creatures/players/player.cpp +++ b/src/creatures/players/player.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/player.hpp b/src/creatures/players/player.hpp index 44a2224ba3c..d37214911f3 100644 --- a/src/creatures/players/player.hpp +++ b/src/creatures/players/player.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/storages/storages.cpp b/src/creatures/players/storages/storages.cpp index 8476fa978a5..7fe925ce9e3 100644 --- a/src/creatures/players/storages/storages.cpp +++ b/src/creatures/players/storages/storages.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/storages/storages.hpp b/src/creatures/players/storages/storages.hpp index afe79a8ad7b..afc9fe14f90 100644 --- a/src/creatures/players/storages/storages.hpp +++ b/src/creatures/players/storages/storages.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/vocations/vocation.cpp b/src/creatures/players/vocations/vocation.cpp index fc07cea986f..c9a276a641d 100644 --- a/src/creatures/players/vocations/vocation.cpp +++ b/src/creatures/players/vocations/vocation.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/vocations/vocation.hpp b/src/creatures/players/vocations/vocation.hpp index 8f81e3805e3..a658e21ece7 100644 --- a/src/creatures/players/vocations/vocation.hpp +++ b/src/creatures/players/vocations/vocation.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/wheel/player_wheel.cpp b/src/creatures/players/wheel/player_wheel.cpp index 9151896cb10..b2fa39960e1 100644 --- a/src/creatures/players/wheel/player_wheel.cpp +++ b/src/creatures/players/wheel/player_wheel.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/wheel/player_wheel.hpp b/src/creatures/players/wheel/player_wheel.hpp index 13a65144c23..3ede17c339d 100644 --- a/src/creatures/players/wheel/player_wheel.hpp +++ b/src/creatures/players/wheel/player_wheel.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/wheel/wheel_definitions.hpp b/src/creatures/players/wheel/wheel_definitions.hpp index 0f40d32bf96..8432e9dca21 100644 --- a/src/creatures/players/wheel/wheel_definitions.hpp +++ b/src/creatures/players/wheel/wheel_definitions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/wheel/wheel_gems.cpp b/src/creatures/players/wheel/wheel_gems.cpp index d7957a9bb05..c3653298c12 100644 --- a/src/creatures/players/wheel/wheel_gems.cpp +++ b/src/creatures/players/wheel/wheel_gems.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/creatures/players/wheel/wheel_gems.hpp b/src/creatures/players/wheel/wheel_gems.hpp index fa47fe12ad2..762684cb383 100644 --- a/src/creatures/players/wheel/wheel_gems.hpp +++ b/src/creatures/players/wheel/wheel_gems.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/database/database.cpp b/src/database/database.cpp index c548b13614a..f226587c511 100644 --- a/src/database/database.cpp +++ b/src/database/database.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/database/database.hpp b/src/database/database.hpp index 9554b2f0bed..2a27c30159b 100644 --- a/src/database/database.hpp +++ b/src/database/database.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/database/database_definitions.hpp b/src/database/database_definitions.hpp index 4e46313fe57..8fe18495115 100644 --- a/src/database/database_definitions.hpp +++ b/src/database/database_definitions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/database/databasemanager.cpp b/src/database/databasemanager.cpp index 373a91fa243..cbcc116dd9a 100644 --- a/src/database/databasemanager.cpp +++ b/src/database/databasemanager.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/database/databasemanager.hpp b/src/database/databasemanager.hpp index 5b66d054d7e..9be5bb0ebf7 100644 --- a/src/database/databasemanager.hpp +++ b/src/database/databasemanager.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/database/databasetasks.cpp b/src/database/databasetasks.cpp index 43370593bef..6d43992ac81 100644 --- a/src/database/databasetasks.cpp +++ b/src/database/databasetasks.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/database/databasetasks.hpp b/src/database/databasetasks.hpp index 90a29d1515b..6922dfc566f 100644 --- a/src/database/databasetasks.hpp +++ b/src/database/databasetasks.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/declarations.hpp b/src/declarations.hpp index 0e698022417..294d9a813c6 100644 --- a/src/declarations.hpp +++ b/src/declarations.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/enums/account_coins.hpp b/src/enums/account_coins.hpp index 65fccac4eb9..0980500aaaa 100644 --- a/src/enums/account_coins.hpp +++ b/src/enums/account_coins.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/enums/account_errors.hpp b/src/enums/account_errors.hpp index 8a9bc6ee308..d5686618162 100644 --- a/src/enums/account_errors.hpp +++ b/src/enums/account_errors.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/enums/account_group_type.hpp b/src/enums/account_group_type.hpp index 6f9e9390a3d..778e706a2cd 100644 --- a/src/enums/account_group_type.hpp +++ b/src/enums/account_group_type.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/enums/account_type.hpp b/src/enums/account_type.hpp index 5b4286a837c..df76c4a289f 100644 --- a/src/enums/account_type.hpp +++ b/src/enums/account_type.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/enums/forge_conversion.hpp b/src/enums/forge_conversion.hpp index 8f84a453bf2..8d990081d55 100644 --- a/src/enums/forge_conversion.hpp +++ b/src/enums/forge_conversion.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/enums/item_attribute.hpp b/src/enums/item_attribute.hpp index 1f6bccf1671..adc49c11a19 100644 --- a/src/enums/item_attribute.hpp +++ b/src/enums/item_attribute.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/enums/lua_variant_type.hpp b/src/enums/lua_variant_type.hpp index 7f7ac216dd5..32dac39dc87 100644 --- a/src/enums/lua_variant_type.hpp +++ b/src/enums/lua_variant_type.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/enums/object_category.hpp b/src/enums/object_category.hpp index fe3e4422a34..74191bf9b50 100644 --- a/src/enums/object_category.hpp +++ b/src/enums/object_category.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/bank/bank.cpp b/src/game/bank/bank.cpp index 713ee645733..5f8db90fd1a 100644 --- a/src/game/bank/bank.cpp +++ b/src/game/bank/bank.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/bank/bank.hpp b/src/game/bank/bank.hpp index f4ebbb7beb9..9e65a55aeb9 100644 --- a/src/game/bank/bank.hpp +++ b/src/game/bank/bank.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/functions/game_reload.cpp b/src/game/functions/game_reload.cpp index f40e9cf9047..54bc029a068 100644 --- a/src/game/functions/game_reload.cpp +++ b/src/game/functions/game_reload.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/functions/game_reload.hpp b/src/game/functions/game_reload.hpp index 29cbac4b847..76190b5d478 100644 --- a/src/game/functions/game_reload.hpp +++ b/src/game/functions/game_reload.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/game.cpp b/src/game/game.cpp index ce8358fe7f2..6e731f78feb 100644 --- a/src/game/game.cpp +++ b/src/game/game.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/game.hpp b/src/game/game.hpp index fe4aedb4985..d70263c1775 100644 --- a/src/game/game.hpp +++ b/src/game/game.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/game_definitions.hpp b/src/game/game_definitions.hpp index 16fd5b771d2..2dadcbbd87c 100644 --- a/src/game/game_definitions.hpp +++ b/src/game/game_definitions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/modal_window/modal_window.hpp b/src/game/modal_window/modal_window.hpp index f79ab41cfea..f31a6d6ae17 100644 --- a/src/game/modal_window/modal_window.hpp +++ b/src/game/modal_window/modal_window.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/movement/position.cpp b/src/game/movement/position.cpp index 0dccd9c9beb..807a65ad458 100644 --- a/src/game/movement/position.cpp +++ b/src/game/movement/position.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/movement/position.hpp b/src/game/movement/position.hpp index 7ec62154785..87e74ee3e22 100644 --- a/src/game/movement/position.hpp +++ b/src/game/movement/position.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/movement/teleport.cpp b/src/game/movement/teleport.cpp index 5fdb984e168..d5a3a73daf1 100644 --- a/src/game/movement/teleport.cpp +++ b/src/game/movement/teleport.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/movement/teleport.hpp b/src/game/movement/teleport.hpp index 998e844b2d6..9e26e1864cf 100644 --- a/src/game/movement/teleport.hpp +++ b/src/game/movement/teleport.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/scheduling/dispatcher.cpp b/src/game/scheduling/dispatcher.cpp index fff897def89..ec999848a92 100644 --- a/src/game/scheduling/dispatcher.cpp +++ b/src/game/scheduling/dispatcher.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/scheduling/dispatcher.hpp b/src/game/scheduling/dispatcher.hpp index 1c5f72658c1..d9e26a0b5d5 100644 --- a/src/game/scheduling/dispatcher.hpp +++ b/src/game/scheduling/dispatcher.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/scheduling/events_scheduler.cpp b/src/game/scheduling/events_scheduler.cpp index 5eaebba700c..70f662f6176 100644 --- a/src/game/scheduling/events_scheduler.cpp +++ b/src/game/scheduling/events_scheduler.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/scheduling/events_scheduler.hpp b/src/game/scheduling/events_scheduler.hpp index ea20a26f992..ae80afdda23 100644 --- a/src/game/scheduling/events_scheduler.hpp +++ b/src/game/scheduling/events_scheduler.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/scheduling/save_manager.hpp b/src/game/scheduling/save_manager.hpp index a809dd73f6a..745231c0075 100644 --- a/src/game/scheduling/save_manager.hpp +++ b/src/game/scheduling/save_manager.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/scheduling/task.cpp b/src/game/scheduling/task.cpp index 9cfe215bbd2..96355968bd1 100644 --- a/src/game/scheduling/task.cpp +++ b/src/game/scheduling/task.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/scheduling/task.hpp b/src/game/scheduling/task.hpp index 2360deeed75..c6591887c8a 100644 --- a/src/game/scheduling/task.hpp +++ b/src/game/scheduling/task.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/zones/zone.cpp b/src/game/zones/zone.cpp index 97ef72cf24f..b6c1191aa78 100644 --- a/src/game/zones/zone.cpp +++ b/src/game/zones/zone.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/game/zones/zone.hpp b/src/game/zones/zone.hpp index 99adf9d985d..82969a25792 100644 --- a/src/game/zones/zone.hpp +++ b/src/game/zones/zone.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/fileloader.cpp b/src/io/fileloader.cpp index ab80267a5a1..38bf2be19e3 100644 --- a/src/io/fileloader.cpp +++ b/src/io/fileloader.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/fileloader.hpp b/src/io/fileloader.hpp index 15756909fdb..2069487202f 100644 --- a/src/io/fileloader.hpp +++ b/src/io/fileloader.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/filestream.cpp b/src/io/filestream.cpp index be370719db5..fc8ae6116fc 100644 --- a/src/io/filestream.cpp +++ b/src/io/filestream.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/filestream.hpp b/src/io/filestream.hpp index 89b04808425..1478fa836df 100644 --- a/src/io/filestream.hpp +++ b/src/io/filestream.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/functions/iologindata_load_player.cpp b/src/io/functions/iologindata_load_player.cpp index 021d4b7c96e..bd61b2456bb 100644 --- a/src/io/functions/iologindata_load_player.cpp +++ b/src/io/functions/iologindata_load_player.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/functions/iologindata_load_player.hpp b/src/io/functions/iologindata_load_player.hpp index e8b0b4094de..07a478d2dc3 100644 --- a/src/io/functions/iologindata_load_player.hpp +++ b/src/io/functions/iologindata_load_player.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/functions/iologindata_save_player.cpp b/src/io/functions/iologindata_save_player.cpp index f1a70a5a8fb..7bc1b34c864 100644 --- a/src/io/functions/iologindata_save_player.cpp +++ b/src/io/functions/iologindata_save_player.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/functions/iologindata_save_player.hpp b/src/io/functions/iologindata_save_player.hpp index 1c3cf89cb9c..5bc2ea9ce02 100644 --- a/src/io/functions/iologindata_save_player.hpp +++ b/src/io/functions/iologindata_save_player.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/io_bosstiary.cpp b/src/io/io_bosstiary.cpp index eea2c7f3547..0090c0b3ebb 100644 --- a/src/io/io_bosstiary.cpp +++ b/src/io/io_bosstiary.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/io_bosstiary.hpp b/src/io/io_bosstiary.hpp index b491247b295..84d9f0955e0 100644 --- a/src/io/io_bosstiary.hpp +++ b/src/io/io_bosstiary.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/io_definitions.hpp b/src/io/io_definitions.hpp index 22d61883ac8..ed546114803 100644 --- a/src/io/io_definitions.hpp +++ b/src/io/io_definitions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/io_wheel.cpp b/src/io/io_wheel.cpp index d0f3c5c1e28..6e7c2b02b0f 100644 --- a/src/io/io_wheel.cpp +++ b/src/io/io_wheel.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/io_wheel.hpp b/src/io/io_wheel.hpp index 1bc56428b08..e354f9aee52 100644 --- a/src/io/io_wheel.hpp +++ b/src/io/io_wheel.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/iobestiary.cpp b/src/io/iobestiary.cpp index a16c6164a93..f7305d8503c 100644 --- a/src/io/iobestiary.cpp +++ b/src/io/iobestiary.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/iobestiary.hpp b/src/io/iobestiary.hpp index 896e00434a1..9cb2ef2fe55 100644 --- a/src/io/iobestiary.hpp +++ b/src/io/iobestiary.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/ioguild.cpp b/src/io/ioguild.cpp index 7555c5c0ed8..115d688c89a 100644 --- a/src/io/ioguild.cpp +++ b/src/io/ioguild.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/ioguild.hpp b/src/io/ioguild.hpp index d56a451a43e..cc450841bd1 100644 --- a/src/io/ioguild.hpp +++ b/src/io/ioguild.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/iologindata.cpp b/src/io/iologindata.cpp index f65d76f7a8b..7e113ef901e 100644 --- a/src/io/iologindata.cpp +++ b/src/io/iologindata.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/iologindata.hpp b/src/io/iologindata.hpp index c7902dd4e61..b9fcc124ea0 100644 --- a/src/io/iologindata.hpp +++ b/src/io/iologindata.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/iomap.cpp b/src/io/iomap.cpp index a84365bedf1..4edfefa66d1 100644 --- a/src/io/iomap.cpp +++ b/src/io/iomap.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/iomap.hpp b/src/io/iomap.hpp index e74f1ce3bfa..78fcc23191f 100644 --- a/src/io/iomap.hpp +++ b/src/io/iomap.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/iomapserialize.cpp b/src/io/iomapserialize.cpp index 7d40bb54b73..a0ac392d955 100644 --- a/src/io/iomapserialize.cpp +++ b/src/io/iomapserialize.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/iomapserialize.hpp b/src/io/iomapserialize.hpp index 017dd970529..08cbac01128 100644 --- a/src/io/iomapserialize.hpp +++ b/src/io/iomapserialize.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/iomarket.cpp b/src/io/iomarket.cpp index f308e10e687..ac79ef4c541 100644 --- a/src/io/iomarket.cpp +++ b/src/io/iomarket.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/iomarket.hpp b/src/io/iomarket.hpp index b02fba0ce6a..33180053584 100644 --- a/src/io/iomarket.hpp +++ b/src/io/iomarket.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/ioprey.cpp b/src/io/ioprey.cpp index 2a1c0eebd7a..642423c2abd 100644 --- a/src/io/ioprey.cpp +++ b/src/io/ioprey.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/io/ioprey.hpp b/src/io/ioprey.hpp index 2219e630b92..221f2ce5562 100644 --- a/src/io/ioprey.hpp +++ b/src/io/ioprey.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/bed.cpp b/src/items/bed.cpp index a1af00b2334..4ce4a1e0edd 100644 --- a/src/items/bed.cpp +++ b/src/items/bed.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/bed.hpp b/src/items/bed.hpp index 6fafe858a90..59c0c66f68c 100644 --- a/src/items/bed.hpp +++ b/src/items/bed.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/containers/container.cpp b/src/items/containers/container.cpp index c4f6e04988d..7bd7dcef2c9 100644 --- a/src/items/containers/container.cpp +++ b/src/items/containers/container.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/containers/container.hpp b/src/items/containers/container.hpp index 9bcd2389299..6bfb509b8d3 100644 --- a/src/items/containers/container.hpp +++ b/src/items/containers/container.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/containers/depot/depotchest.cpp b/src/items/containers/depot/depotchest.cpp index 198ec3e14f0..15488267f04 100644 --- a/src/items/containers/depot/depotchest.cpp +++ b/src/items/containers/depot/depotchest.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/containers/depot/depotchest.hpp b/src/items/containers/depot/depotchest.hpp index 069bad38209..6b64ca2b897 100644 --- a/src/items/containers/depot/depotchest.hpp +++ b/src/items/containers/depot/depotchest.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/containers/depot/depotlocker.cpp b/src/items/containers/depot/depotlocker.cpp index c431e8bd58e..0be000794ef 100644 --- a/src/items/containers/depot/depotlocker.cpp +++ b/src/items/containers/depot/depotlocker.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/containers/depot/depotlocker.hpp b/src/items/containers/depot/depotlocker.hpp index b8f33c15c70..09d794c444f 100644 --- a/src/items/containers/depot/depotlocker.hpp +++ b/src/items/containers/depot/depotlocker.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/containers/inbox/inbox.cpp b/src/items/containers/inbox/inbox.cpp index 7859cd3be3f..9b22c53748a 100644 --- a/src/items/containers/inbox/inbox.cpp +++ b/src/items/containers/inbox/inbox.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/containers/inbox/inbox.hpp b/src/items/containers/inbox/inbox.hpp index 058f96e029a..79eb126edc8 100644 --- a/src/items/containers/inbox/inbox.hpp +++ b/src/items/containers/inbox/inbox.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/containers/mailbox/mailbox.cpp b/src/items/containers/mailbox/mailbox.cpp index 19b3db5367a..c2c9b2f61e1 100644 --- a/src/items/containers/mailbox/mailbox.cpp +++ b/src/items/containers/mailbox/mailbox.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/containers/mailbox/mailbox.hpp b/src/items/containers/mailbox/mailbox.hpp index 5f47b61b290..116cd0ee1c4 100644 --- a/src/items/containers/mailbox/mailbox.hpp +++ b/src/items/containers/mailbox/mailbox.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/containers/rewards/reward.cpp b/src/items/containers/rewards/reward.cpp index 62ef98b0c7e..4b1757bd6c8 100644 --- a/src/items/containers/rewards/reward.cpp +++ b/src/items/containers/rewards/reward.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/containers/rewards/reward.hpp b/src/items/containers/rewards/reward.hpp index f372fbfb74b..1ab3c8f9b70 100644 --- a/src/items/containers/rewards/reward.hpp +++ b/src/items/containers/rewards/reward.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/containers/rewards/rewardchest.cpp b/src/items/containers/rewards/rewardchest.cpp index 00729491139..c9bb8112f90 100644 --- a/src/items/containers/rewards/rewardchest.cpp +++ b/src/items/containers/rewards/rewardchest.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/containers/rewards/rewardchest.hpp b/src/items/containers/rewards/rewardchest.hpp index 295eafc06df..2960128eb75 100644 --- a/src/items/containers/rewards/rewardchest.hpp +++ b/src/items/containers/rewards/rewardchest.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/cylinder.cpp b/src/items/cylinder.cpp index c328b1fbd8d..0636e5ff34c 100644 --- a/src/items/cylinder.cpp +++ b/src/items/cylinder.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/cylinder.hpp b/src/items/cylinder.hpp index bab34b5ce04..f6c149dd589 100644 --- a/src/items/cylinder.hpp +++ b/src/items/cylinder.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/decay/decay.cpp b/src/items/decay/decay.cpp index 4afc2e8287a..27ae7b6b485 100644 --- a/src/items/decay/decay.cpp +++ b/src/items/decay/decay.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/decay/decay.hpp b/src/items/decay/decay.hpp index 5d103f45daa..e2916f6134f 100644 --- a/src/items/decay/decay.hpp +++ b/src/items/decay/decay.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/functions/item/attribute.cpp b/src/items/functions/item/attribute.cpp index fcc2ad501ee..c67c6ce38f7 100644 --- a/src/items/functions/item/attribute.cpp +++ b/src/items/functions/item/attribute.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/functions/item/attribute.hpp b/src/items/functions/item/attribute.hpp index 8ffbcc880f7..a2d3ba128ed 100644 --- a/src/items/functions/item/attribute.hpp +++ b/src/items/functions/item/attribute.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/functions/item/custom_attribute.cpp b/src/items/functions/item/custom_attribute.cpp index f7cfa925eac..202c57c0960 100644 --- a/src/items/functions/item/custom_attribute.cpp +++ b/src/items/functions/item/custom_attribute.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/functions/item/custom_attribute.hpp b/src/items/functions/item/custom_attribute.hpp index 2d609e8cdaa..e91832c6b6b 100644 --- a/src/items/functions/item/custom_attribute.hpp +++ b/src/items/functions/item/custom_attribute.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/functions/item/item_parse.cpp b/src/items/functions/item/item_parse.cpp index e5f6a45a51e..9a4294994e0 100644 --- a/src/items/functions/item/item_parse.cpp +++ b/src/items/functions/item/item_parse.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/functions/item/item_parse.hpp b/src/items/functions/item/item_parse.hpp index f60277ad5d7..7ead9cc6ef8 100644 --- a/src/items/functions/item/item_parse.hpp +++ b/src/items/functions/item/item_parse.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/item.cpp b/src/items/item.cpp index 2c0569711c7..d937f2c7bd4 100644 --- a/src/items/item.cpp +++ b/src/items/item.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/item.hpp b/src/items/item.hpp index c720cf969d0..9ff0d3d15aa 100644 --- a/src/items/item.hpp +++ b/src/items/item.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/items.cpp b/src/items/items.cpp index b26c980cc45..6e56e4e99a2 100644 --- a/src/items/items.cpp +++ b/src/items/items.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/items.hpp b/src/items/items.hpp index 1d4f014c12a..f9e48ae1032 100644 --- a/src/items/items.hpp +++ b/src/items/items.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/items_classification.hpp b/src/items/items_classification.hpp index bd8b61f801d..601abd328ed 100644 --- a/src/items/items_classification.hpp +++ b/src/items/items_classification.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/items_definitions.hpp b/src/items/items_definitions.hpp index 3c200daa3e9..f6b5f9f86ae 100644 --- a/src/items/items_definitions.hpp +++ b/src/items/items_definitions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/thing.cpp b/src/items/thing.cpp index 0665f15a6e5..6eec7994df8 100644 --- a/src/items/thing.cpp +++ b/src/items/thing.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/thing.hpp b/src/items/thing.hpp index bc7d7f3af78..9e8662d5f45 100644 --- a/src/items/thing.hpp +++ b/src/items/thing.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/tile.cpp b/src/items/tile.cpp index 2f3d24ce24b..ca354700f22 100644 --- a/src/items/tile.cpp +++ b/src/items/tile.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/tile.hpp b/src/items/tile.hpp index f3a4cc7c6b1..71f9d4ae09c 100644 --- a/src/items/tile.hpp +++ b/src/items/tile.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/trashholder.cpp b/src/items/trashholder.cpp index 40c1f0e49b4..65676a75a37 100644 --- a/src/items/trashholder.cpp +++ b/src/items/trashholder.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/trashholder.hpp b/src/items/trashholder.hpp index 0aa52ed7bee..771c8687fbd 100644 --- a/src/items/trashholder.hpp +++ b/src/items/trashholder.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/weapons/weapons.cpp b/src/items/weapons/weapons.cpp index 0c6853ec807..8ddce42d60d 100644 --- a/src/items/weapons/weapons.cpp +++ b/src/items/weapons/weapons.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/items/weapons/weapons.hpp b/src/items/weapons/weapons.hpp index b6ab050d8ea..cb2bee4b1f5 100644 --- a/src/items/weapons/weapons.hpp +++ b/src/items/weapons/weapons.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/kv/kv.cpp b/src/kv/kv.cpp index 6f516c78480..29a9787f72f 100644 --- a/src/kv/kv.cpp +++ b/src/kv/kv.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/kv/kv.hpp b/src/kv/kv.hpp index 07b277d51da..fa32461b24b 100644 --- a/src/kv/kv.hpp +++ b/src/kv/kv.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/kv/kv_sql.cpp b/src/kv/kv_sql.cpp index e5a3fc2ba3a..57d2cc57a10 100644 --- a/src/kv/kv_sql.cpp +++ b/src/kv/kv_sql.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/kv/kv_sql.hpp b/src/kv/kv_sql.hpp index fd181b1cef7..1d7a6387d68 100644 --- a/src/kv/kv_sql.hpp +++ b/src/kv/kv_sql.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/kv/value_wrapper.cpp b/src/kv/value_wrapper.cpp index c8ee3be5038..78f828248a1 100644 --- a/src/kv/value_wrapper.cpp +++ b/src/kv/value_wrapper.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/kv/value_wrapper.hpp b/src/kv/value_wrapper.hpp index 1503575c5b1..0b388187dc3 100644 --- a/src/kv/value_wrapper.hpp +++ b/src/kv/value_wrapper.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/kv/value_wrapper_proto.cpp b/src/kv/value_wrapper_proto.cpp index 9e60296c6e6..4362101957e 100644 --- a/src/kv/value_wrapper_proto.cpp +++ b/src/kv/value_wrapper_proto.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/kv/value_wrapper_proto.hpp b/src/kv/value_wrapper_proto.hpp index 5c347880468..382b91a040b 100644 --- a/src/kv/value_wrapper_proto.hpp +++ b/src/kv/value_wrapper_proto.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lib/di/container.hpp b/src/lib/di/container.hpp index ee9868908ae..3c15e30b3d9 100644 --- a/src/lib/di/container.hpp +++ b/src/lib/di/container.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lib/logging/log_with_spd_log.cpp b/src/lib/logging/log_with_spd_log.cpp index ca56f146915..f8cfe16946d 100644 --- a/src/lib/logging/log_with_spd_log.cpp +++ b/src/lib/logging/log_with_spd_log.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lib/logging/log_with_spd_log.hpp b/src/lib/logging/log_with_spd_log.hpp index 6e2fd075e9d..983ee716c0d 100644 --- a/src/lib/logging/log_with_spd_log.hpp +++ b/src/lib/logging/log_with_spd_log.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lib/logging/logger.hpp b/src/lib/logging/logger.hpp index e8474b74858..bc6c455fbde 100644 --- a/src/lib/logging/logger.hpp +++ b/src/lib/logging/logger.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lib/messaging/command.hpp b/src/lib/messaging/command.hpp index d37003bfec6..83af9a9bd31 100644 --- a/src/lib/messaging/command.hpp +++ b/src/lib/messaging/command.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lib/messaging/event.hpp b/src/lib/messaging/event.hpp index 573c41b3056..df966b81c98 100644 --- a/src/lib/messaging/event.hpp +++ b/src/lib/messaging/event.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lib/messaging/message.hpp b/src/lib/messaging/message.hpp index 2d08cadaf0b..4707a5f04c0 100644 --- a/src/lib/messaging/message.hpp +++ b/src/lib/messaging/message.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lib/metrics/metrics.cpp b/src/lib/metrics/metrics.cpp index ffdfda919fc..2a65e9a7d5d 100644 --- a/src/lib/metrics/metrics.cpp +++ b/src/lib/metrics/metrics.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lib/metrics/metrics.hpp b/src/lib/metrics/metrics.hpp index 4ea34ef9e9f..0d8c291dfbe 100644 --- a/src/lib/metrics/metrics.hpp +++ b/src/lib/metrics/metrics.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lib/thread/thread_pool.cpp b/src/lib/thread/thread_pool.cpp index b36c137904c..e01028810bc 100644 --- a/src/lib/thread/thread_pool.cpp +++ b/src/lib/thread/thread_pool.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lib/thread/thread_pool.hpp b/src/lib/thread/thread_pool.hpp index 8ad60f14676..e36d8beca57 100644 --- a/src/lib/thread/thread_pool.hpp +++ b/src/lib/thread/thread_pool.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/callbacks/callbacks_definitions.hpp b/src/lua/callbacks/callbacks_definitions.hpp index a5716053a75..521a2c4cda7 100644 --- a/src/lua/callbacks/callbacks_definitions.hpp +++ b/src/lua/callbacks/callbacks_definitions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/callbacks/creaturecallback.cpp b/src/lua/callbacks/creaturecallback.cpp index df5845f46c0..11e33a9b1e1 100644 --- a/src/lua/callbacks/creaturecallback.cpp +++ b/src/lua/callbacks/creaturecallback.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/callbacks/creaturecallback.hpp b/src/lua/callbacks/creaturecallback.hpp index f59cef0248e..f7665720410 100644 --- a/src/lua/callbacks/creaturecallback.hpp +++ b/src/lua/callbacks/creaturecallback.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/callbacks/event_callback.cpp b/src/lua/callbacks/event_callback.cpp index 8510502b226..51c03131fa9 100644 --- a/src/lua/callbacks/event_callback.cpp +++ b/src/lua/callbacks/event_callback.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/callbacks/event_callback.hpp b/src/lua/callbacks/event_callback.hpp index 152c86b8ed7..d9dc4a9b110 100644 --- a/src/lua/callbacks/event_callback.hpp +++ b/src/lua/callbacks/event_callback.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/callbacks/events_callbacks.cpp b/src/lua/callbacks/events_callbacks.cpp index 2c0ca056dc6..4a1830f80fb 100644 --- a/src/lua/callbacks/events_callbacks.cpp +++ b/src/lua/callbacks/events_callbacks.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/callbacks/events_callbacks.hpp b/src/lua/callbacks/events_callbacks.hpp index 7eb471430ef..53b119f6445 100644 --- a/src/lua/callbacks/events_callbacks.hpp +++ b/src/lua/callbacks/events_callbacks.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/creature/actions.cpp b/src/lua/creature/actions.cpp index 25653ab0fa5..42f3e12c865 100644 --- a/src/lua/creature/actions.cpp +++ b/src/lua/creature/actions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/creature/actions.hpp b/src/lua/creature/actions.hpp index c0fb1a27790..80fd2ea54e9 100644 --- a/src/lua/creature/actions.hpp +++ b/src/lua/creature/actions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/creature/creatureevent.cpp b/src/lua/creature/creatureevent.cpp index 29feb652036..e3ac954908f 100644 --- a/src/lua/creature/creatureevent.cpp +++ b/src/lua/creature/creatureevent.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/creature/creatureevent.hpp b/src/lua/creature/creatureevent.hpp index 24052aa84a2..8a208343e11 100644 --- a/src/lua/creature/creatureevent.hpp +++ b/src/lua/creature/creatureevent.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/creature/events.cpp b/src/lua/creature/events.cpp index 3ce3f88bdb3..2917d128b8a 100644 --- a/src/lua/creature/events.cpp +++ b/src/lua/creature/events.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/creature/events.hpp b/src/lua/creature/events.hpp index 08260c8aef4..1ec6d4ba81c 100644 --- a/src/lua/creature/events.hpp +++ b/src/lua/creature/events.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/creature/movement.cpp b/src/lua/creature/movement.cpp index b3901ea1ff0..7f9a194e047 100644 --- a/src/lua/creature/movement.cpp +++ b/src/lua/creature/movement.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/creature/movement.hpp b/src/lua/creature/movement.hpp index d410cf2a03f..2decdbaa001 100644 --- a/src/lua/creature/movement.hpp +++ b/src/lua/creature/movement.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/creature/raids.cpp b/src/lua/creature/raids.cpp index f30155578b3..f0d7cecf402 100644 --- a/src/lua/creature/raids.cpp +++ b/src/lua/creature/raids.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/creature/raids.hpp b/src/lua/creature/raids.hpp index d78f79bf8f5..0266641edda 100644 --- a/src/lua/creature/raids.hpp +++ b/src/lua/creature/raids.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/creature/talkaction.cpp b/src/lua/creature/talkaction.cpp index 72c2f098f87..3586bdbceea 100644 --- a/src/lua/creature/talkaction.cpp +++ b/src/lua/creature/talkaction.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/creature/talkaction.hpp b/src/lua/creature/talkaction.hpp index a6b34d04af3..ec68539850c 100644 --- a/src/lua/creature/talkaction.hpp +++ b/src/lua/creature/talkaction.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/core_functions.hpp b/src/lua/functions/core/core_functions.hpp index b1aa3271337..c6c14121b06 100644 --- a/src/lua/functions/core/core_functions.hpp +++ b/src/lua/functions/core/core_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/game/bank_functions.hpp b/src/lua/functions/core/game/bank_functions.hpp index a49bf7ed734..db450f49469 100644 --- a/src/lua/functions/core/game/bank_functions.hpp +++ b/src/lua/functions/core/game/bank_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/game/config_functions.cpp b/src/lua/functions/core/game/config_functions.cpp index 1a646fe7931..a84c500b985 100644 --- a/src/lua/functions/core/game/config_functions.cpp +++ b/src/lua/functions/core/game/config_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/game/config_functions.hpp b/src/lua/functions/core/game/config_functions.hpp index 4c5d57e8715..ae4952e9643 100644 --- a/src/lua/functions/core/game/config_functions.hpp +++ b/src/lua/functions/core/game/config_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/game/core_game_functions.hpp b/src/lua/functions/core/game/core_game_functions.hpp index c330f15ebbb..03bcc236daf 100644 --- a/src/lua/functions/core/game/core_game_functions.hpp +++ b/src/lua/functions/core/game/core_game_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/game/game_functions.cpp b/src/lua/functions/core/game/game_functions.cpp index f25a6e02a3e..ea418dede66 100644 --- a/src/lua/functions/core/game/game_functions.cpp +++ b/src/lua/functions/core/game/game_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/game/game_functions.hpp b/src/lua/functions/core/game/game_functions.hpp index ddacbac9e7b..7f3b642e97d 100644 --- a/src/lua/functions/core/game/game_functions.hpp +++ b/src/lua/functions/core/game/game_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/game/global_functions.cpp b/src/lua/functions/core/game/global_functions.cpp index bd40793f32f..4c956dcb6d4 100644 --- a/src/lua/functions/core/game/global_functions.cpp +++ b/src/lua/functions/core/game/global_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/game/global_functions.hpp b/src/lua/functions/core/game/global_functions.hpp index 6ccb6c45d9d..1b9f3fbe12f 100644 --- a/src/lua/functions/core/game/global_functions.hpp +++ b/src/lua/functions/core/game/global_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/game/lua_enums.cpp b/src/lua/functions/core/game/lua_enums.cpp index e71f53ec07a..69978ed3066 100644 --- a/src/lua/functions/core/game/lua_enums.cpp +++ b/src/lua/functions/core/game/lua_enums.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/game/lua_enums.hpp b/src/lua/functions/core/game/lua_enums.hpp index 654b46059d0..8beabbbacee 100644 --- a/src/lua/functions/core/game/lua_enums.hpp +++ b/src/lua/functions/core/game/lua_enums.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/game/modal_window_functions.cpp b/src/lua/functions/core/game/modal_window_functions.cpp index 754d36d43ea..0221a9e9a59 100644 --- a/src/lua/functions/core/game/modal_window_functions.cpp +++ b/src/lua/functions/core/game/modal_window_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/game/modal_window_functions.hpp b/src/lua/functions/core/game/modal_window_functions.hpp index 78e935314bc..9d6b9192026 100644 --- a/src/lua/functions/core/game/modal_window_functions.hpp +++ b/src/lua/functions/core/game/modal_window_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/libs/bit_functions.cpp b/src/lua/functions/core/libs/bit_functions.cpp index ea1bb3db8e1..86f76a77a26 100644 --- a/src/lua/functions/core/libs/bit_functions.cpp +++ b/src/lua/functions/core/libs/bit_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/libs/bit_functions.hpp b/src/lua/functions/core/libs/bit_functions.hpp index 2c514276fa4..c2143fde198 100644 --- a/src/lua/functions/core/libs/bit_functions.hpp +++ b/src/lua/functions/core/libs/bit_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/libs/core_libs_functions.hpp b/src/lua/functions/core/libs/core_libs_functions.hpp index 4badabe262f..614c59e6e3d 100644 --- a/src/lua/functions/core/libs/core_libs_functions.hpp +++ b/src/lua/functions/core/libs/core_libs_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/libs/db_functions.cpp b/src/lua/functions/core/libs/db_functions.cpp index 72aee912c23..d5f5a62e0f8 100644 --- a/src/lua/functions/core/libs/db_functions.cpp +++ b/src/lua/functions/core/libs/db_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/libs/db_functions.hpp b/src/lua/functions/core/libs/db_functions.hpp index 8e7f3147949..99b69f1f7ba 100644 --- a/src/lua/functions/core/libs/db_functions.hpp +++ b/src/lua/functions/core/libs/db_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/libs/kv_functions.cpp b/src/lua/functions/core/libs/kv_functions.cpp index dbef916364d..5ed9c9cfe5d 100644 --- a/src/lua/functions/core/libs/kv_functions.cpp +++ b/src/lua/functions/core/libs/kv_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/libs/kv_functions.hpp b/src/lua/functions/core/libs/kv_functions.hpp index f6775f9e257..919901df7f8 100644 --- a/src/lua/functions/core/libs/kv_functions.hpp +++ b/src/lua/functions/core/libs/kv_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/libs/logger_functions.cpp b/src/lua/functions/core/libs/logger_functions.cpp index 7b7f21b8219..dc039a9ed0d 100644 --- a/src/lua/functions/core/libs/logger_functions.cpp +++ b/src/lua/functions/core/libs/logger_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/libs/logger_functions.hpp b/src/lua/functions/core/libs/logger_functions.hpp index d1db895d61b..5e83f1461c9 100644 --- a/src/lua/functions/core/libs/logger_functions.hpp +++ b/src/lua/functions/core/libs/logger_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/libs/metrics_functions.cpp b/src/lua/functions/core/libs/metrics_functions.cpp index 4c0b916c94d..9dc9fa528cb 100644 --- a/src/lua/functions/core/libs/metrics_functions.cpp +++ b/src/lua/functions/core/libs/metrics_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/libs/metrics_functions.hpp b/src/lua/functions/core/libs/metrics_functions.hpp index 47d492c3d42..e71f005aaa8 100644 --- a/src/lua/functions/core/libs/metrics_functions.hpp +++ b/src/lua/functions/core/libs/metrics_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/libs/result_functions.cpp b/src/lua/functions/core/libs/result_functions.cpp index 1c2115e96b8..512f90f7da5 100644 --- a/src/lua/functions/core/libs/result_functions.cpp +++ b/src/lua/functions/core/libs/result_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/libs/result_functions.hpp b/src/lua/functions/core/libs/result_functions.hpp index 47eacc5137c..4aa25173ed7 100644 --- a/src/lua/functions/core/libs/result_functions.hpp +++ b/src/lua/functions/core/libs/result_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/network/core_network_functions.hpp b/src/lua/functions/core/network/core_network_functions.hpp index a43553e7638..c1e65ec15ac 100644 --- a/src/lua/functions/core/network/core_network_functions.hpp +++ b/src/lua/functions/core/network/core_network_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/network/network_message_functions.cpp b/src/lua/functions/core/network/network_message_functions.cpp index 630cd185d1b..a1b66264fac 100644 --- a/src/lua/functions/core/network/network_message_functions.cpp +++ b/src/lua/functions/core/network/network_message_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/network/network_message_functions.hpp b/src/lua/functions/core/network/network_message_functions.hpp index df27dbd19af..5a2982c0d85 100644 --- a/src/lua/functions/core/network/network_message_functions.hpp +++ b/src/lua/functions/core/network/network_message_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/network/webhook_functions.cpp b/src/lua/functions/core/network/webhook_functions.cpp index 43e1935d903..37372f8b23a 100644 --- a/src/lua/functions/core/network/webhook_functions.cpp +++ b/src/lua/functions/core/network/webhook_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/core/network/webhook_functions.hpp b/src/lua/functions/core/network/webhook_functions.hpp index ac79e40ec3e..7d5f53ba4b8 100644 --- a/src/lua/functions/core/network/webhook_functions.hpp +++ b/src/lua/functions/core/network/webhook_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/combat/combat_functions.cpp b/src/lua/functions/creatures/combat/combat_functions.cpp index 0d55cae9060..3bba21d179c 100644 --- a/src/lua/functions/creatures/combat/combat_functions.cpp +++ b/src/lua/functions/creatures/combat/combat_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/combat/combat_functions.hpp b/src/lua/functions/creatures/combat/combat_functions.hpp index 652255d7ae4..e031713e98e 100644 --- a/src/lua/functions/creatures/combat/combat_functions.hpp +++ b/src/lua/functions/creatures/combat/combat_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/combat/condition_functions.cpp b/src/lua/functions/creatures/combat/condition_functions.cpp index efd468ac3d6..7bc2535bdf4 100644 --- a/src/lua/functions/creatures/combat/condition_functions.cpp +++ b/src/lua/functions/creatures/combat/condition_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/combat/condition_functions.hpp b/src/lua/functions/creatures/combat/condition_functions.hpp index 7357cf9a991..938c5170542 100644 --- a/src/lua/functions/creatures/combat/condition_functions.hpp +++ b/src/lua/functions/creatures/combat/condition_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/combat/spell_functions.cpp b/src/lua/functions/creatures/combat/spell_functions.cpp index c76df1163ea..0bcf7c9c11a 100644 --- a/src/lua/functions/creatures/combat/spell_functions.cpp +++ b/src/lua/functions/creatures/combat/spell_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/combat/spell_functions.hpp b/src/lua/functions/creatures/combat/spell_functions.hpp index 9a4acb6fac9..7f2487ba16f 100644 --- a/src/lua/functions/creatures/combat/spell_functions.hpp +++ b/src/lua/functions/creatures/combat/spell_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/combat/variant_functions.cpp b/src/lua/functions/creatures/combat/variant_functions.cpp index 602dbfa1820..3b0299983fd 100644 --- a/src/lua/functions/creatures/combat/variant_functions.cpp +++ b/src/lua/functions/creatures/combat/variant_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/combat/variant_functions.hpp b/src/lua/functions/creatures/combat/variant_functions.hpp index 3f91600dedc..c62bbc114a8 100644 --- a/src/lua/functions/creatures/combat/variant_functions.hpp +++ b/src/lua/functions/creatures/combat/variant_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/creature_functions.cpp b/src/lua/functions/creatures/creature_functions.cpp index 8315a690f36..a633afe9749 100644 --- a/src/lua/functions/creatures/creature_functions.cpp +++ b/src/lua/functions/creatures/creature_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/creature_functions.hpp b/src/lua/functions/creatures/creature_functions.hpp index 48c374936c0..0876bb72901 100644 --- a/src/lua/functions/creatures/creature_functions.hpp +++ b/src/lua/functions/creatures/creature_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/monster/charm_functions.cpp b/src/lua/functions/creatures/monster/charm_functions.cpp index 2e6234d61c6..48f7ff5aec9 100644 --- a/src/lua/functions/creatures/monster/charm_functions.cpp +++ b/src/lua/functions/creatures/monster/charm_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/monster/charm_functions.hpp b/src/lua/functions/creatures/monster/charm_functions.hpp index 4a76658653a..7be1c8de635 100644 --- a/src/lua/functions/creatures/monster/charm_functions.hpp +++ b/src/lua/functions/creatures/monster/charm_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/monster/loot_functions.cpp b/src/lua/functions/creatures/monster/loot_functions.cpp index b23508033bc..3fe3a188368 100644 --- a/src/lua/functions/creatures/monster/loot_functions.cpp +++ b/src/lua/functions/creatures/monster/loot_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/monster/loot_functions.hpp b/src/lua/functions/creatures/monster/loot_functions.hpp index 919588ee38e..77059307a66 100644 --- a/src/lua/functions/creatures/monster/loot_functions.hpp +++ b/src/lua/functions/creatures/monster/loot_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/monster/monster_functions.cpp b/src/lua/functions/creatures/monster/monster_functions.cpp index 0c6bcf8c5bf..1591053c391 100644 --- a/src/lua/functions/creatures/monster/monster_functions.cpp +++ b/src/lua/functions/creatures/monster/monster_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/monster/monster_functions.hpp b/src/lua/functions/creatures/monster/monster_functions.hpp index a74253a1905..bf2785ae430 100644 --- a/src/lua/functions/creatures/monster/monster_functions.hpp +++ b/src/lua/functions/creatures/monster/monster_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/monster/monster_spell_functions.cpp b/src/lua/functions/creatures/monster/monster_spell_functions.cpp index 00e0c7c89b0..ee00fd43af7 100644 --- a/src/lua/functions/creatures/monster/monster_spell_functions.cpp +++ b/src/lua/functions/creatures/monster/monster_spell_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/monster/monster_spell_functions.hpp b/src/lua/functions/creatures/monster/monster_spell_functions.hpp index 4a1a4871c5e..ad737ea9326 100644 --- a/src/lua/functions/creatures/monster/monster_spell_functions.hpp +++ b/src/lua/functions/creatures/monster/monster_spell_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/monster/monster_type_functions.cpp b/src/lua/functions/creatures/monster/monster_type_functions.cpp index 269ff6aa3c3..b937083fddb 100644 --- a/src/lua/functions/creatures/monster/monster_type_functions.cpp +++ b/src/lua/functions/creatures/monster/monster_type_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/monster/monster_type_functions.hpp b/src/lua/functions/creatures/monster/monster_type_functions.hpp index f1b2a98bf50..9a72f53b145 100644 --- a/src/lua/functions/creatures/monster/monster_type_functions.hpp +++ b/src/lua/functions/creatures/monster/monster_type_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/npc/npc_functions.cpp b/src/lua/functions/creatures/npc/npc_functions.cpp index c4f447c8823..43c2950a802 100644 --- a/src/lua/functions/creatures/npc/npc_functions.cpp +++ b/src/lua/functions/creatures/npc/npc_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/npc/npc_functions.hpp b/src/lua/functions/creatures/npc/npc_functions.hpp index ef3371a54fb..1622a15c0e7 100644 --- a/src/lua/functions/creatures/npc/npc_functions.hpp +++ b/src/lua/functions/creatures/npc/npc_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/npc/npc_type_functions.cpp b/src/lua/functions/creatures/npc/npc_type_functions.cpp index 35bbebbe848..ef79b671a34 100644 --- a/src/lua/functions/creatures/npc/npc_type_functions.cpp +++ b/src/lua/functions/creatures/npc/npc_type_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/npc/npc_type_functions.hpp b/src/lua/functions/creatures/npc/npc_type_functions.hpp index a6646b7b2f4..ce799c71f20 100644 --- a/src/lua/functions/creatures/npc/npc_type_functions.hpp +++ b/src/lua/functions/creatures/npc/npc_type_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/npc/shop_functions.cpp b/src/lua/functions/creatures/npc/shop_functions.cpp index 66de7afd962..ee848e0bf47 100644 --- a/src/lua/functions/creatures/npc/shop_functions.cpp +++ b/src/lua/functions/creatures/npc/shop_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/npc/shop_functions.hpp b/src/lua/functions/creatures/npc/shop_functions.hpp index 1ffb53c92dc..e5a6c9943cc 100644 --- a/src/lua/functions/creatures/npc/shop_functions.hpp +++ b/src/lua/functions/creatures/npc/shop_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/player/group_functions.cpp b/src/lua/functions/creatures/player/group_functions.cpp index 13b2701253f..0ea195fe745 100644 --- a/src/lua/functions/creatures/player/group_functions.cpp +++ b/src/lua/functions/creatures/player/group_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/player/group_functions.hpp b/src/lua/functions/creatures/player/group_functions.hpp index 68ce41adeb9..ecc3ac07280 100644 --- a/src/lua/functions/creatures/player/group_functions.hpp +++ b/src/lua/functions/creatures/player/group_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/player/guild_functions.cpp b/src/lua/functions/creatures/player/guild_functions.cpp index 81464483fdc..196f0f9d31e 100644 --- a/src/lua/functions/creatures/player/guild_functions.cpp +++ b/src/lua/functions/creatures/player/guild_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/player/guild_functions.hpp b/src/lua/functions/creatures/player/guild_functions.hpp index f2977038328..e5c48244415 100644 --- a/src/lua/functions/creatures/player/guild_functions.hpp +++ b/src/lua/functions/creatures/player/guild_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/player/mount_functions.cpp b/src/lua/functions/creatures/player/mount_functions.cpp index 719c75ad7c2..49b16db6caa 100644 --- a/src/lua/functions/creatures/player/mount_functions.cpp +++ b/src/lua/functions/creatures/player/mount_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/player/mount_functions.hpp b/src/lua/functions/creatures/player/mount_functions.hpp index 61222e912b4..3a4db6d6f92 100644 --- a/src/lua/functions/creatures/player/mount_functions.hpp +++ b/src/lua/functions/creatures/player/mount_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/player/party_functions.cpp b/src/lua/functions/creatures/player/party_functions.cpp index e16499870a6..d739cde3ceb 100644 --- a/src/lua/functions/creatures/player/party_functions.cpp +++ b/src/lua/functions/creatures/player/party_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/player/party_functions.hpp b/src/lua/functions/creatures/player/party_functions.hpp index 30ff517201d..312a39952fe 100644 --- a/src/lua/functions/creatures/player/party_functions.hpp +++ b/src/lua/functions/creatures/player/party_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/player/player_functions.cpp b/src/lua/functions/creatures/player/player_functions.cpp index 90e9e721618..3ba2c43841d 100644 --- a/src/lua/functions/creatures/player/player_functions.cpp +++ b/src/lua/functions/creatures/player/player_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/player/player_functions.hpp b/src/lua/functions/creatures/player/player_functions.hpp index e7c00bded72..fafc99ff955 100644 --- a/src/lua/functions/creatures/player/player_functions.hpp +++ b/src/lua/functions/creatures/player/player_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/player/vocation_functions.cpp b/src/lua/functions/creatures/player/vocation_functions.cpp index 4d6a99cc15f..5e95a827ff9 100644 --- a/src/lua/functions/creatures/player/vocation_functions.cpp +++ b/src/lua/functions/creatures/player/vocation_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/creatures/player/vocation_functions.hpp b/src/lua/functions/creatures/player/vocation_functions.hpp index 67868ae1ea8..7205580f90f 100644 --- a/src/lua/functions/creatures/player/vocation_functions.hpp +++ b/src/lua/functions/creatures/player/vocation_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/action_functions.cpp b/src/lua/functions/events/action_functions.cpp index e0e746d4149..c1fd581f8bd 100644 --- a/src/lua/functions/events/action_functions.cpp +++ b/src/lua/functions/events/action_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/action_functions.hpp b/src/lua/functions/events/action_functions.hpp index 759d5275f2e..952ee746a5a 100644 --- a/src/lua/functions/events/action_functions.hpp +++ b/src/lua/functions/events/action_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/creature_event_functions.cpp b/src/lua/functions/events/creature_event_functions.cpp index 2c5da7661f8..7b5e25a12f3 100644 --- a/src/lua/functions/events/creature_event_functions.cpp +++ b/src/lua/functions/events/creature_event_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/creature_event_functions.hpp b/src/lua/functions/events/creature_event_functions.hpp index 8c1d5a871c0..64b9e6e4eb8 100644 --- a/src/lua/functions/events/creature_event_functions.hpp +++ b/src/lua/functions/events/creature_event_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/event_callback_functions.cpp b/src/lua/functions/events/event_callback_functions.cpp index 3be4adf256a..54457f4367a 100644 --- a/src/lua/functions/events/event_callback_functions.cpp +++ b/src/lua/functions/events/event_callback_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/event_callback_functions.hpp b/src/lua/functions/events/event_callback_functions.hpp index 9cdc21729cb..a5fa9e8900c 100644 --- a/src/lua/functions/events/event_callback_functions.hpp +++ b/src/lua/functions/events/event_callback_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/events_functions.hpp b/src/lua/functions/events/events_functions.hpp index d9be1e080d3..6830b7c1a73 100644 --- a/src/lua/functions/events/events_functions.hpp +++ b/src/lua/functions/events/events_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/events_scheduler_functions.cpp b/src/lua/functions/events/events_scheduler_functions.cpp index d07482dd295..2dd8a8a7d85 100644 --- a/src/lua/functions/events/events_scheduler_functions.cpp +++ b/src/lua/functions/events/events_scheduler_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/events_scheduler_functions.hpp b/src/lua/functions/events/events_scheduler_functions.hpp index ab7978043f0..2c57bd26717 100644 --- a/src/lua/functions/events/events_scheduler_functions.hpp +++ b/src/lua/functions/events/events_scheduler_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/global_event_functions.cpp b/src/lua/functions/events/global_event_functions.cpp index 955f477bcae..8f54e5b03fd 100644 --- a/src/lua/functions/events/global_event_functions.cpp +++ b/src/lua/functions/events/global_event_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/global_event_functions.hpp b/src/lua/functions/events/global_event_functions.hpp index dd9491928ff..6c988a61ca1 100644 --- a/src/lua/functions/events/global_event_functions.hpp +++ b/src/lua/functions/events/global_event_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/move_event_functions.cpp b/src/lua/functions/events/move_event_functions.cpp index 07bf82d4c58..5de49c26f59 100644 --- a/src/lua/functions/events/move_event_functions.cpp +++ b/src/lua/functions/events/move_event_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/move_event_functions.hpp b/src/lua/functions/events/move_event_functions.hpp index 23187553e16..6e6412bec73 100644 --- a/src/lua/functions/events/move_event_functions.hpp +++ b/src/lua/functions/events/move_event_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/talk_action_functions.cpp b/src/lua/functions/events/talk_action_functions.cpp index d6d77287776..8618cc3c4a3 100644 --- a/src/lua/functions/events/talk_action_functions.cpp +++ b/src/lua/functions/events/talk_action_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/events/talk_action_functions.hpp b/src/lua/functions/events/talk_action_functions.hpp index a8c003828b9..6b2bc9b7a20 100644 --- a/src/lua/functions/events/talk_action_functions.hpp +++ b/src/lua/functions/events/talk_action_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/items/container_functions.cpp b/src/lua/functions/items/container_functions.cpp index 132acbdc5b4..a2251de641c 100644 --- a/src/lua/functions/items/container_functions.cpp +++ b/src/lua/functions/items/container_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/items/container_functions.hpp b/src/lua/functions/items/container_functions.hpp index 186f6b68119..568018b45fd 100644 --- a/src/lua/functions/items/container_functions.hpp +++ b/src/lua/functions/items/container_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/items/imbuement_functions.cpp b/src/lua/functions/items/imbuement_functions.cpp index 2a4e85d7d88..f24a3f564d7 100644 --- a/src/lua/functions/items/imbuement_functions.cpp +++ b/src/lua/functions/items/imbuement_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/items/imbuement_functions.hpp b/src/lua/functions/items/imbuement_functions.hpp index 018c7faad85..516fe91a3b1 100644 --- a/src/lua/functions/items/imbuement_functions.hpp +++ b/src/lua/functions/items/imbuement_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/items/item_classification_functions.cpp b/src/lua/functions/items/item_classification_functions.cpp index 5120f8391ff..aa8cf19d589 100644 --- a/src/lua/functions/items/item_classification_functions.cpp +++ b/src/lua/functions/items/item_classification_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/items/item_classification_functions.hpp b/src/lua/functions/items/item_classification_functions.hpp index 95f778705fa..ebbd9fddd47 100644 --- a/src/lua/functions/items/item_classification_functions.hpp +++ b/src/lua/functions/items/item_classification_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/items/item_functions.cpp b/src/lua/functions/items/item_functions.cpp index 3e9190055c4..71ab040f47d 100644 --- a/src/lua/functions/items/item_functions.cpp +++ b/src/lua/functions/items/item_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/items/item_functions.hpp b/src/lua/functions/items/item_functions.hpp index 5e8c81187a9..44e111479a3 100644 --- a/src/lua/functions/items/item_functions.hpp +++ b/src/lua/functions/items/item_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/items/item_type_functions.cpp b/src/lua/functions/items/item_type_functions.cpp index 4ff757b3dcd..b528795a050 100644 --- a/src/lua/functions/items/item_type_functions.cpp +++ b/src/lua/functions/items/item_type_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/items/item_type_functions.hpp b/src/lua/functions/items/item_type_functions.hpp index 46eaa646217..ce53d429804 100644 --- a/src/lua/functions/items/item_type_functions.hpp +++ b/src/lua/functions/items/item_type_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/items/weapon_functions.cpp b/src/lua/functions/items/weapon_functions.cpp index 3a41d0ac75d..962c1181fe4 100644 --- a/src/lua/functions/items/weapon_functions.cpp +++ b/src/lua/functions/items/weapon_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/items/weapon_functions.hpp b/src/lua/functions/items/weapon_functions.hpp index 01ba6966317..b7ac6fe6aaa 100644 --- a/src/lua/functions/items/weapon_functions.hpp +++ b/src/lua/functions/items/weapon_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/lua_functions_loader.cpp b/src/lua/functions/lua_functions_loader.cpp index 77f360ce036..69ee85dd865 100644 --- a/src/lua/functions/lua_functions_loader.cpp +++ b/src/lua/functions/lua_functions_loader.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/lua_functions_loader.hpp b/src/lua/functions/lua_functions_loader.hpp index 26ae6219f1e..e5251e3a1c3 100644 --- a/src/lua/functions/lua_functions_loader.hpp +++ b/src/lua/functions/lua_functions_loader.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/map/house_functions.cpp b/src/lua/functions/map/house_functions.cpp index 834382ae432..ffba0d0b5a9 100644 --- a/src/lua/functions/map/house_functions.cpp +++ b/src/lua/functions/map/house_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/map/house_functions.hpp b/src/lua/functions/map/house_functions.hpp index b5419ad5e13..ede7e1f0998 100644 --- a/src/lua/functions/map/house_functions.hpp +++ b/src/lua/functions/map/house_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/map/map_functions.hpp b/src/lua/functions/map/map_functions.hpp index 526705dcc6b..43b025c9155 100644 --- a/src/lua/functions/map/map_functions.hpp +++ b/src/lua/functions/map/map_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/map/position_functions.cpp b/src/lua/functions/map/position_functions.cpp index b68d8501588..579304266c0 100644 --- a/src/lua/functions/map/position_functions.cpp +++ b/src/lua/functions/map/position_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/map/position_functions.hpp b/src/lua/functions/map/position_functions.hpp index b7a6de50d45..095ec0667c7 100644 --- a/src/lua/functions/map/position_functions.hpp +++ b/src/lua/functions/map/position_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/map/teleport_functions.cpp b/src/lua/functions/map/teleport_functions.cpp index 05a4b408f61..32fce583057 100644 --- a/src/lua/functions/map/teleport_functions.cpp +++ b/src/lua/functions/map/teleport_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/map/teleport_functions.hpp b/src/lua/functions/map/teleport_functions.hpp index 6c02c162028..152cf8f0d9e 100644 --- a/src/lua/functions/map/teleport_functions.hpp +++ b/src/lua/functions/map/teleport_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/map/tile_functions.cpp b/src/lua/functions/map/tile_functions.cpp index 448671c3b81..cdd82abda8c 100644 --- a/src/lua/functions/map/tile_functions.cpp +++ b/src/lua/functions/map/tile_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/map/tile_functions.hpp b/src/lua/functions/map/tile_functions.hpp index a1956171c54..78e8c44b32c 100644 --- a/src/lua/functions/map/tile_functions.hpp +++ b/src/lua/functions/map/tile_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/map/town_functions.cpp b/src/lua/functions/map/town_functions.cpp index f50042c1566..053aca36b82 100644 --- a/src/lua/functions/map/town_functions.cpp +++ b/src/lua/functions/map/town_functions.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/functions/map/town_functions.hpp b/src/lua/functions/map/town_functions.hpp index 4f60eeab28e..65ff991c2c9 100644 --- a/src/lua/functions/map/town_functions.hpp +++ b/src/lua/functions/map/town_functions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/global/baseevents.cpp b/src/lua/global/baseevents.cpp index 7347c898c40..9728342f7ed 100644 --- a/src/lua/global/baseevents.cpp +++ b/src/lua/global/baseevents.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/global/baseevents.hpp b/src/lua/global/baseevents.hpp index 84b16ca6ef4..48e2d104a92 100644 --- a/src/lua/global/baseevents.hpp +++ b/src/lua/global/baseevents.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/global/globalevent.cpp b/src/lua/global/globalevent.cpp index c50eba9b8d4..62650b429a9 100644 --- a/src/lua/global/globalevent.cpp +++ b/src/lua/global/globalevent.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/global/globalevent.hpp b/src/lua/global/globalevent.hpp index 683da71260f..004c6cb5f8c 100644 --- a/src/lua/global/globalevent.hpp +++ b/src/lua/global/globalevent.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/global/lua_timer_event_descr.hpp b/src/lua/global/lua_timer_event_descr.hpp index da9bdc9b402..a8f7563654f 100644 --- a/src/lua/global/lua_timer_event_descr.hpp +++ b/src/lua/global/lua_timer_event_descr.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/global/lua_variant.hpp b/src/lua/global/lua_variant.hpp index 13250cc6288..6ec24d4f8af 100644 --- a/src/lua/global/lua_variant.hpp +++ b/src/lua/global/lua_variant.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/global/shared_object.hpp b/src/lua/global/shared_object.hpp index 3370bb022c1..4a6fc3c988e 100644 --- a/src/lua/global/shared_object.hpp +++ b/src/lua/global/shared_object.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/lua_definitions.hpp b/src/lua/lua_definitions.hpp index e0ff4028c0b..083871e237b 100644 --- a/src/lua/lua_definitions.hpp +++ b/src/lua/lua_definitions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/modules/modules.cpp b/src/lua/modules/modules.cpp index 5e1565251c8..8b79524ec2c 100644 --- a/src/lua/modules/modules.cpp +++ b/src/lua/modules/modules.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/modules/modules.hpp b/src/lua/modules/modules.hpp index f72baf94fe1..6543138d515 100644 --- a/src/lua/modules/modules.hpp +++ b/src/lua/modules/modules.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/scripts/lua_environment.cpp b/src/lua/scripts/lua_environment.cpp index f5552d108a4..f3d2273df34 100644 --- a/src/lua/scripts/lua_environment.cpp +++ b/src/lua/scripts/lua_environment.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/scripts/lua_environment.hpp b/src/lua/scripts/lua_environment.hpp index 8a7e7db66af..b467599cad4 100644 --- a/src/lua/scripts/lua_environment.hpp +++ b/src/lua/scripts/lua_environment.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/scripts/luajit_sync.hpp b/src/lua/scripts/luajit_sync.hpp index f32f82efc65..62f5720bd95 100644 --- a/src/lua/scripts/luajit_sync.hpp +++ b/src/lua/scripts/luajit_sync.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/scripts/luascript.cpp b/src/lua/scripts/luascript.cpp index adefef958ed..d67b90e9d18 100644 --- a/src/lua/scripts/luascript.cpp +++ b/src/lua/scripts/luascript.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/scripts/luascript.hpp b/src/lua/scripts/luascript.hpp index b7845c84558..06654c35a21 100644 --- a/src/lua/scripts/luascript.hpp +++ b/src/lua/scripts/luascript.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/scripts/script_environment.cpp b/src/lua/scripts/script_environment.cpp index ccebdb1a8dd..4a7ad7acd94 100644 --- a/src/lua/scripts/script_environment.cpp +++ b/src/lua/scripts/script_environment.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/scripts/script_environment.hpp b/src/lua/scripts/script_environment.hpp index 285e5d77131..fe89d3f1e5d 100644 --- a/src/lua/scripts/script_environment.hpp +++ b/src/lua/scripts/script_environment.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/scripts/scripts.cpp b/src/lua/scripts/scripts.cpp index 14c9b8c26cb..1d395cdd096 100644 --- a/src/lua/scripts/scripts.cpp +++ b/src/lua/scripts/scripts.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/lua/scripts/scripts.hpp b/src/lua/scripts/scripts.hpp index a0344a33b3d..7cefaaaf8bd 100644 --- a/src/lua/scripts/scripts.hpp +++ b/src/lua/scripts/scripts.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/main.cpp b/src/main.cpp index ae80f752c92..be289d397f6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/map/house/house.cpp b/src/map/house/house.cpp index 5090ff86bc5..7967e21c3cc 100644 --- a/src/map/house/house.cpp +++ b/src/map/house/house.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/map/house/house.hpp b/src/map/house/house.hpp index 9b70f444524..aa4b746cc0a 100644 --- a/src/map/house/house.hpp +++ b/src/map/house/house.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/map/house/housetile.cpp b/src/map/house/housetile.cpp index 3ed661a1c12..6b301f0e817 100644 --- a/src/map/house/housetile.cpp +++ b/src/map/house/housetile.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/map/house/housetile.hpp b/src/map/house/housetile.hpp index 04da8a4e7f2..b661251dbea 100644 --- a/src/map/house/housetile.hpp +++ b/src/map/house/housetile.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/map/map.cpp b/src/map/map.cpp index 662e85f18d7..395e6d7d2be 100644 --- a/src/map/map.cpp +++ b/src/map/map.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/map/map.hpp b/src/map/map.hpp index d5ca9b2af14..0894853e30e 100644 --- a/src/map/map.hpp +++ b/src/map/map.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/map/map_definitions.hpp b/src/map/map_definitions.hpp index 3c61e7a2091..67c9878b92d 100644 --- a/src/map/map_definitions.hpp +++ b/src/map/map_definitions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/map/mapcache.cpp b/src/map/mapcache.cpp index e0e58e5f099..ede4d3fd862 100644 --- a/src/map/mapcache.cpp +++ b/src/map/mapcache.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/map/spectators.cpp b/src/map/spectators.cpp index 8ae8514bb97..18ce13871fe 100644 --- a/src/map/spectators.cpp +++ b/src/map/spectators.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/map/spectators.hpp b/src/map/spectators.hpp index 6b9a0445510..93526e05c93 100644 --- a/src/map/spectators.hpp +++ b/src/map/spectators.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/map/town.hpp b/src/map/town.hpp index f6ab241b54b..d6529fa30ef 100644 --- a/src/map/town.hpp +++ b/src/map/town.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/pch.hpp b/src/pch.hpp index 60f059fa4a3..522411b5621 100644 --- a/src/pch.hpp +++ b/src/pch.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/security/argon.cpp b/src/security/argon.cpp index 7a869fc2a43..02079e70ca0 100644 --- a/src/security/argon.cpp +++ b/src/security/argon.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/security/argon.hpp b/src/security/argon.hpp index 03dea87f56f..ea09dcffccb 100644 --- a/src/security/argon.hpp +++ b/src/security/argon.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/security/rsa.cpp b/src/security/rsa.cpp index b5f64356d1d..fc28d931f66 100644 --- a/src/security/rsa.cpp +++ b/src/security/rsa.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/security/rsa.hpp b/src/security/rsa.hpp index 1ede77483c0..a6de23b4e13 100644 --- a/src/security/rsa.hpp +++ b/src/security/rsa.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/connection/connection.cpp b/src/server/network/connection/connection.cpp index 3ae209754d8..7d9de916263 100644 --- a/src/server/network/connection/connection.cpp +++ b/src/server/network/connection/connection.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/connection/connection.hpp b/src/server/network/connection/connection.hpp index 2054cf69f9e..76d9b1c1876 100644 --- a/src/server/network/connection/connection.hpp +++ b/src/server/network/connection/connection.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/message/networkmessage.cpp b/src/server/network/message/networkmessage.cpp index 9c10b4907df..15963135560 100644 --- a/src/server/network/message/networkmessage.cpp +++ b/src/server/network/message/networkmessage.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/message/networkmessage.hpp b/src/server/network/message/networkmessage.hpp index 3051e87bb22..72f0e69c3dc 100644 --- a/src/server/network/message/networkmessage.hpp +++ b/src/server/network/message/networkmessage.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/message/outputmessage.cpp b/src/server/network/message/outputmessage.cpp index d15cd4b3618..6ede36da406 100644 --- a/src/server/network/message/outputmessage.cpp +++ b/src/server/network/message/outputmessage.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/message/outputmessage.hpp b/src/server/network/message/outputmessage.hpp index 6cc6f067bfe..1f590fbd214 100644 --- a/src/server/network/message/outputmessage.hpp +++ b/src/server/network/message/outputmessage.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/protocol/protocol.cpp b/src/server/network/protocol/protocol.cpp index 686a8f7e4ec..6f6a1c8228e 100644 --- a/src/server/network/protocol/protocol.cpp +++ b/src/server/network/protocol/protocol.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/protocol/protocol.hpp b/src/server/network/protocol/protocol.hpp index 6e4b09c4697..c264f49bf01 100644 --- a/src/server/network/protocol/protocol.hpp +++ b/src/server/network/protocol/protocol.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/protocol/protocolgame.cpp b/src/server/network/protocol/protocolgame.cpp index 15ed659a0d9..566f39c7e71 100644 --- a/src/server/network/protocol/protocolgame.cpp +++ b/src/server/network/protocol/protocolgame.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/protocol/protocolgame.hpp b/src/server/network/protocol/protocolgame.hpp index 880712510c7..61c3aa19af0 100644 --- a/src/server/network/protocol/protocolgame.hpp +++ b/src/server/network/protocol/protocolgame.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/protocol/protocollogin.cpp b/src/server/network/protocol/protocollogin.cpp index 9efd5f753c5..4e38a7503c7 100644 --- a/src/server/network/protocol/protocollogin.cpp +++ b/src/server/network/protocol/protocollogin.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/protocol/protocollogin.hpp b/src/server/network/protocol/protocollogin.hpp index 367c4ccf140..6652a85625e 100644 --- a/src/server/network/protocol/protocollogin.hpp +++ b/src/server/network/protocol/protocollogin.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/protocol/protocolstatus.cpp b/src/server/network/protocol/protocolstatus.cpp index 750c85fbbfc..8d9f245f5df 100644 --- a/src/server/network/protocol/protocolstatus.cpp +++ b/src/server/network/protocol/protocolstatus.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/protocol/protocolstatus.hpp b/src/server/network/protocol/protocolstatus.hpp index 36d83f77d65..78b03a74333 100644 --- a/src/server/network/protocol/protocolstatus.hpp +++ b/src/server/network/protocol/protocolstatus.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/webhook/webhook.cpp b/src/server/network/webhook/webhook.cpp index af801f55825..57d4f607aac 100644 --- a/src/server/network/webhook/webhook.cpp +++ b/src/server/network/webhook/webhook.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/network/webhook/webhook.hpp b/src/server/network/webhook/webhook.hpp index df414f24e1d..bae62a64c35 100644 --- a/src/server/network/webhook/webhook.hpp +++ b/src/server/network/webhook/webhook.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/server.cpp b/src/server/server.cpp index a2c6142931d..2968033bafa 100644 --- a/src/server/server.cpp +++ b/src/server/server.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/server.hpp b/src/server/server.hpp index ae6f805e4ff..054ec2607c8 100644 --- a/src/server/server.hpp +++ b/src/server/server.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/server_definitions.hpp b/src/server/server_definitions.hpp index acf9df45628..ad816b76b02 100644 --- a/src/server/server_definitions.hpp +++ b/src/server/server_definitions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/signals.cpp b/src/server/signals.cpp index 149554d3b4f..978b589eb38 100644 --- a/src/server/signals.cpp +++ b/src/server/signals.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/server/signals.hpp b/src/server/signals.hpp index 88d7d037ef4..4d46e24e129 100644 --- a/src/server/signals.hpp +++ b/src/server/signals.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/utils/arraylist.hpp b/src/utils/arraylist.hpp index 94e05e2eb76..da507e68480 100644 --- a/src/utils/arraylist.hpp +++ b/src/utils/arraylist.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/utils/benchmark.hpp b/src/utils/benchmark.hpp index 7ec007ceaeb..961547efc94 100644 --- a/src/utils/benchmark.hpp +++ b/src/utils/benchmark.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/utils/const.hpp b/src/utils/const.hpp index c681d110c69..c3f82df7ff7 100644 --- a/src/utils/const.hpp +++ b/src/utils/const.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/utils/definitions.hpp b/src/utils/definitions.hpp index af53e58ba19..d557896f361 100644 --- a/src/utils/definitions.hpp +++ b/src/utils/definitions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/utils/pugicast.cpp b/src/utils/pugicast.cpp index 22c20f1e650..62717c33621 100644 --- a/src/utils/pugicast.cpp +++ b/src/utils/pugicast.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/utils/pugicast.hpp b/src/utils/pugicast.hpp index 7e1a1ce9973..d09532a2d5c 100644 --- a/src/utils/pugicast.hpp +++ b/src/utils/pugicast.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/utils/simd.hpp b/src/utils/simd.hpp index 9089fcfe03d..3961d51e708 100644 --- a/src/utils/simd.hpp +++ b/src/utils/simd.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/utils/tools.cpp b/src/utils/tools.cpp index c7bccf2afae..83f9ba84ace 100644 --- a/src/utils/tools.cpp +++ b/src/utils/tools.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/utils/tools.hpp b/src/utils/tools.hpp index 654c9d73c19..5af2d9f282b 100644 --- a/src/utils/tools.hpp +++ b/src/utils/tools.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/utils/utils_definitions.hpp b/src/utils/utils_definitions.hpp index 2d18849b399..59f0049ad9c 100644 --- a/src/utils/utils_definitions.hpp +++ b/src/utils/utils_definitions.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/utils/vectorset.hpp b/src/utils/vectorset.hpp index dab8901bfc5..0f81ce3960d 100644 --- a/src/utils/vectorset.hpp +++ b/src/utils/vectorset.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/utils/vectorsort.hpp b/src/utils/vectorsort.hpp index 7069e5463c8..0a3618b963f 100644 --- a/src/utils/vectorsort.hpp +++ b/src/utils/vectorsort.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/utils/wildcardtree.cpp b/src/utils/wildcardtree.cpp index 6ab174d7b95..1e91b9b4169 100644 --- a/src/utils/wildcardtree.cpp +++ b/src/utils/wildcardtree.cpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/src/utils/wildcardtree.hpp b/src/utils/wildcardtree.hpp index 1a614ede553..07728ae9849 100644 --- a/src/utils/wildcardtree.hpp +++ b/src/utils/wildcardtree.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/tests/fixture/account/in_memory_account_repository.hpp b/tests/fixture/account/in_memory_account_repository.hpp index e390cd46d47..40dbda38e08 100644 --- a/tests/fixture/account/in_memory_account_repository.hpp +++ b/tests/fixture/account/in_memory_account_repository.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/tests/fixture/kv/in_memory_kv.hpp b/tests/fixture/kv/in_memory_kv.hpp index 84a84ba8dff..60a99ed8920 100644 --- a/tests/fixture/kv/in_memory_kv.hpp +++ b/tests/fixture/kv/in_memory_kv.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/tests/fixture/lib/logging/in_memory_logger.hpp b/tests/fixture/lib/logging/in_memory_logger.hpp index a6767a446a7..76f0e7307d6 100644 --- a/tests/fixture/lib/logging/in_memory_logger.hpp +++ b/tests/fixture/lib/logging/in_memory_logger.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/tests/unit/lib/logging/in_memory_logger.hpp b/tests/unit/lib/logging/in_memory_logger.hpp index f97f2ad402b..0cfd0ef41d5 100644 --- a/tests/unit/lib/logging/in_memory_logger.hpp +++ b/tests/unit/lib/logging/in_memory_logger.hpp @@ -1,6 +1,6 @@ /** * Canary - A free and open-source MMORPG server emulator - * Copyright (©) 2019-2022 OpenTibiaBR + * Copyright (©) 2019-2024 OpenTibiaBR * Repository: https://github.com/opentibiabr/canary * License: https://github.com/opentibiabr/canary/blob/main/LICENSE * Contributors: https://github.com/opentibiabr/canary/graphs/contributors diff --git a/vcpkg.json b/vcpkg.json index 50222f7e5bf..82f1058bd94 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -16,7 +16,10 @@ { "name": "opentelemetry-cpp", "default-features": true, - "features": [ "otlp-http", "prometheus" ] + "features": [ + "otlp-http", + "prometheus" + ] }, "parallel-hashmap", "protobuf", @@ -25,7 +28,9 @@ "zlib", { "name": "libmariadb", - "features": [ "mariadbclient" ] + "features": [ + "mariadbclient" + ] }, { "name": "gmp", diff --git a/vcproj/settings.props b/vcproj/settings.props index 1f7471f48c6..0bec82ecbb2 100644 --- a/vcproj/settings.props +++ b/vcproj/settings.props @@ -25,10 +25,23 @@ abseil_dll.lib; argon2.lib; opentelemetry_common.lib; - opentelemetry_resources.lib; - opentelemetry_metrics.lib; + opentelemetry_exporter_in_memory.lib; + opentelemetry_exporter_ostream_logs.lib; opentelemetry_exporter_ostream_metrics.lib; + opentelemetry_exporter_ostream_span.lib; + opentelemetry_exporter_otlp_http.lib; + opentelemetry_exporter_otlp_http_client.lib; + opentelemetry_exporter_otlp_http_log.lib; + opentelemetry_exporter_otlp_http_metric.lib; opentelemetry_exporter_prometheus.lib; + opentelemetry_http_client_curl.lib; + opentelemetry_logs.lib; + opentelemetry_metrics.lib; + opentelemetry_otlp_recordable.lib; + opentelemetry_proto.lib; + opentelemetry_resources.lib; + opentelemetry_trace.lib; + opentelemetry_version.lib; prometheus-cpp-core.lib; prometheus-cpp-pull.lib; civetweb.lib; @@ -51,12 +64,23 @@ abseil_dll.lib; argon2.lib; opentelemetry_common.lib; - opentelemetry_resources.lib; - opentelemetry_metrics.lib; + opentelemetry_exporter_in_memory.lib; + opentelemetry_exporter_ostream_logs.lib; opentelemetry_exporter_ostream_metrics.lib; + opentelemetry_exporter_ostream_span.lib; + opentelemetry_exporter_otlp_http.lib; + opentelemetry_exporter_otlp_http_client.lib; + opentelemetry_exporter_otlp_http_log.lib; + opentelemetry_exporter_otlp_http_metric.lib; opentelemetry_exporter_prometheus.lib; - prometheus-cpp-core.lib; - prometheus-cpp-pull.lib; + opentelemetry_http_client_curl.lib; + opentelemetry_logs.lib; + opentelemetry_metrics.lib; + opentelemetry_otlp_recordable.lib; + opentelemetry_proto.lib; + opentelemetry_resources.lib; + opentelemetry_trace.lib; + opentelemetry_version.lib; civetweb.lib; civetweb-cpp.lib From 78f3e4f55d4d4f89b0c1bfe5b227477388cad6fd Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 22 Feb 2024 08:14:34 -0300 Subject: [PATCH 3/4] feat: add missing achievement on giant spider wyda (#2296) --- .../scripts/creaturescripts/monster/wyda.lua | 6 ------ .../monster/giant_spider_wyda_death.lua | 12 ++++++++++++ 2 files changed, 12 insertions(+), 6 deletions(-) delete mode 100644 data-otservbr-global/scripts/creaturescripts/monster/wyda.lua create mode 100644 data/scripts/creaturescripts/monster/giant_spider_wyda_death.lua diff --git a/data-otservbr-global/scripts/creaturescripts/monster/wyda.lua b/data-otservbr-global/scripts/creaturescripts/monster/wyda.lua deleted file mode 100644 index 27c9887eae8..00000000000 --- a/data-otservbr-global/scripts/creaturescripts/monster/wyda.lua +++ /dev/null @@ -1,6 +0,0 @@ -local wyda = CreatureEvent("Wyda") -function wyda.onDeath(creature, corpse, killer, mostDamage, unjustified, mostDamage_unjustified) - creature:say("It seems this was just an illusion.", TALKTYPE_ORANGE_1) -end - -wyda:register() diff --git a/data/scripts/creaturescripts/monster/giant_spider_wyda_death.lua b/data/scripts/creaturescripts/monster/giant_spider_wyda_death.lua new file mode 100644 index 00000000000..37ba34ffbf3 --- /dev/null +++ b/data/scripts/creaturescripts/monster/giant_spider_wyda_death.lua @@ -0,0 +1,12 @@ +local creatureevent = CreatureEvent("GiantSpiderWyda") + +function creatureevent.onDeath(creature, corpse, killer, mostDamageKiller, lastHitUnjustified, mostDamageUnjustified) + creature:say("It seems this was just an illusion.", TALKTYPE_MONSTER_SAY) + + if mostDamageKiller:isPlayer() then + mostDamageKiller:addAchievement("Someone's Bored") + end + return true +end + +creatureevent:register() From f561f155d46ab875ec65a4c7a662a086ee4b8551 Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 22 Feb 2024 08:18:21 -0300 Subject: [PATCH 4/4] fix: game reload issues and improvements (#2295) Closes #2213 Co-authored-by: Mirkaanks <98285577+Mirkaanks@users.noreply.github.com> Co-authored-by: Mirkaan <98285577+Mirkaanks@users.noreply.github.com> --- src/game/functions/game_reload.cpp | 104 +++++++++++++++++++---------- src/game/functions/game_reload.hpp | 1 - 2 files changed, 69 insertions(+), 36 deletions(-) diff --git a/src/game/functions/game_reload.cpp b/src/game/functions/game_reload.cpp index 54bc029a068..887877bb1eb 100644 --- a/src/game/functions/game_reload.cpp +++ b/src/game/functions/game_reload.cpp @@ -61,6 +61,15 @@ uint8_t GameReload::getReloadNumber(Reload_t reloadTypes) const { return magic_enum::enum_integer(reloadTypes); } +// Helper function for logging reload status +void logReloadStatus(const std::string &name, bool result) { + if (result) { + g_logger().info("Reloaded: {}", name); + } else { + g_logger().error("Failed to reload: {}", name); + } +} + /* * From here down have the private members functions * These should only be used within the class itself @@ -72,98 +81,123 @@ bool GameReload::reloadAll() const { reloadResults.reserve(magic_enum::enum_count()); for (auto value : magic_enum::enum_values()) { - g_logger().info("Reloading: {}", magic_enum::enum_name(value)); - if (value == Reload_t::RELOAD_TYPE_ALL) { - continue; + const auto name = magic_enum::enum_name(value); + g_logger().info("Reloading: {}", name); + if (value != Reload_t::RELOAD_TYPE_ALL) { + reloadResults.push_back(init(value)); } - - reloadResults.push_back(init(value)); } return std::ranges::any_of(reloadResults, [](bool result) { return result; }); } bool GameReload::reloadChat() const { - return g_chat().load(); + const bool result = g_chat().load(); + logReloadStatus("Chat", result); + return result; } bool GameReload::reloadConfig() const { - return g_configManager().reload(); + const bool result = g_configManager().reload(); + logReloadStatus("Config", result); + return result; } bool GameReload::reloadEvents() const { - return g_events().loadFromXml(); + const bool result = g_events().loadFromXml(); + logReloadStatus("Events", result); + return result; } bool GameReload::reloadCore() const { - if (auto coreFolder = g_configManager().getString(CORE_DIRECTORY, __FUNCTION__); - g_luaEnvironment().loadFile(coreFolder + "/core.lua", "core.lua") == 0) { - // Reload scripts lib - auto datapackFolder = g_configManager().getString(DATA_DIRECTORY, __FUNCTION__); - if (!g_scripts().loadScripts(datapackFolder + "/scripts/lib", true, false)) { - return false; + const auto &coreFolder = g_configManager().getString(CORE_DIRECTORY, __FUNCTION__); + const bool coreLoaded = g_luaEnvironment().loadFile(coreFolder + "/core.lua", "core.lua") == 0; + + if (coreLoaded) { + const auto &datapackFolder = g_configManager().getString(CORE_DIRECTORY, __FUNCTION__); + const bool scriptsLoaded = g_scripts().loadScripts(coreFolder + "/scripts/lib", true, false); + if (scriptsLoaded) { + return true; } - - return true; } + + logReloadStatus("Core", false); return false; } bool GameReload::reloadImbuements() const { - return g_imbuements().reload(); + const bool result = g_imbuements().reload(); + logReloadStatus("Imbuements", result); + return result; } bool GameReload::reloadItems() const { - return Item::items.reload(); + const bool result = Item::items.reload(); + logReloadStatus("Items", result); + return result; } bool GameReload::reloadModules() const { - return g_modules().reload(); + const bool result = g_modules().reload(); + logReloadStatus("Modules", result); + return result; } bool GameReload::reloadMonsters() const { - // Clear registered MonsterType vector g_monsters().clear(); - // Resets monster spells to prevent the spell from being incorrectly cleared from memory - auto datapackFolder = g_configManager().getString(DATA_DIRECTORY, __FUNCTION__); - if (!g_scripts().loadScripts(datapackFolder + "/scripts/lib", true, false)) { - return false; - } + const auto &datapackFolder = g_configManager().getString(DATA_DIRECTORY, __FUNCTION__); + const auto &coreFolder = g_configManager().getString(CORE_DIRECTORY, __FUNCTION__); - if (g_scripts().loadScripts(datapackFolder + "/monster", false, true) && g_scripts().loadScripts(datapackFolder + "/scripts/lib", true, true)) { + const bool scriptsLoaded = g_scripts().loadScripts(coreFolder + "/scripts/lib", true, false); + const bool monsterScriptsLoaded = g_scripts().loadScripts(datapackFolder + "/monster", false, true); + + if (scriptsLoaded && monsterScriptsLoaded) { + logReloadStatus("Monsters", true); return true; + } else { + logReloadStatus("Monsters", false); + return false; } - return false; } bool GameReload::reloadMounts() const { - return g_game().mounts.reload(); + const bool result = g_game().mounts.reload(); + logReloadStatus("Mounts", result); + return result; } bool GameReload::reloadNpcs() const { - return g_npcs().reload(); + const bool result = g_npcs().reload(); + logReloadStatus("NPCs", result); + return result; } bool GameReload::reloadRaids() const { - return g_game().raids.reload() && g_game().raids.startup(); + const bool result = g_game().raids.reload() && g_game().raids.startup(); + logReloadStatus("Raids", result); + return result; } bool GameReload::reloadScripts() const { g_scripts().clearAllScripts(); Zone::clearZones(); - // Reset scripts lib to prevent the objects from being incorrectly cleared from memory - auto datapackFolder = g_configManager().getString(DATA_DIRECTORY, __FUNCTION__); - g_scripts().loadScripts(datapackFolder + "/scripts/lib", true, false); - auto coreFolder = g_configManager().getString(CORE_DIRECTORY, __FUNCTION__); + + const auto &datapackFolder = g_configManager().getString(DATA_DIRECTORY, __FUNCTION__); + const auto &coreFolder = g_configManager().getString(CORE_DIRECTORY, __FUNCTION__); + + g_scripts().loadScripts(coreFolder + "/scripts/lib", true, false); g_scripts().loadScripts(datapackFolder + "/scripts", false, true); g_scripts().loadScripts(coreFolder + "/scripts", false, true); // It should come last, after everything else has been cleaned up. reloadMonsters(); reloadNpcs(); + logReloadStatus("Scripts", true); return true; } bool GameReload::reloadGroups() const { - return g_game().groups.reload(); + const bool result = g_game().groups.reload(); + logReloadStatus("Groups", result); + return result; } diff --git a/src/game/functions/game_reload.hpp b/src/game/functions/game_reload.hpp index 76190b5d478..e2f3789cfde 100644 --- a/src/game/functions/game_reload.hpp +++ b/src/game/functions/game_reload.hpp @@ -64,7 +64,6 @@ class GameReload : public Game { bool reloadNpcs() const; bool reloadRaids() const; bool reloadScripts() const; - bool reloadTalkaction() const; bool reloadGroups() const; };