2022-12-19 19:45:50 +00:00
|
|
|
#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
|
2024-10-30 04:51:13 +00:00
|
|
|
SPEED_BASE,
|
2024-10-31 17:04:26 +00:00
|
|
|
UP_TO_DATE, // will become NJ_JAYMISSIONS
|
2022-12-19 19:45:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //!__ECHARACTERVERSION__H__
|