mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 14:37:25 +00:00
24 lines
652 B
C++
24 lines
652 B
C++
#pragma once
|
|
|
|
#ifndef __ECHARACTERVERSION__H__
|
|
#define __ECHARACTERVERSION__H__
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eCharacterVersion : uint32_t {
|
|
// Versions from the live game
|
|
RELEASE = 0, // Initial release of the game
|
|
LIVE, // Fixes for the 1.9 release bug fixes for missions leading up to joining a faction
|
|
// New versions for DLU fixes
|
|
// Fixes the "Joined a faction" player flag not being set properly
|
|
PLAYER_FACTION_FLAGS,
|
|
// Fixes vault size value
|
|
VAULT_SIZE,
|
|
// Fixes speed base value in level component
|
|
SPEED_BASE,
|
|
// Fixes explore missions that were corruped
|
|
UP_TO_DATE // Will become EXPLORE
|
|
};
|
|
|
|
#endif //!__ECHARACTERVERSION__H__
|