Files
VOREStation/code/__defines/persistence.dm
SatinIsle 64bc861dab Default Save Organs/Markings to No (#17452)
Changed the default setting for Save Organs and Save Markings to No in character setup, which seem to cause more problems for people than people who use them intentionally. This won't change any existing character's settings.

For clarity for those unsure, these are the settings that decide that when you leave the round, whether changes to your organs or markings persist into future rounds. This is can be cool from a story perspective, but on a server like this the majority of people tend to want more control over their own characters and having settings change like this unexpectedly (sometimes due to bugs) is a pain.
2025-03-30 21:15:04 +02:00

8 lines
526 B
Plaintext

#define PERSIST_SPAWN 0x01 // Persist spawnpoint based on location of despawn/logout.
#define PERSIST_WEIGHT 0x02 // Persist mob weight
#define PERSIST_ORGANS 0x04 // Persist the status (normal/amputated/robotic/etc) and model (for robotic) status of organs
#define PERSIST_MARKINGS 0x08 // Persist markings
#define PERSIST_SIZE 0x10 // Persist size
#define PERSIST_COUNT 5 // Number of valid bits in this bitflag. Keep this updated!
#define PERSIST_DEFAULT PERSIST_SPAWN|PERSIST_SIZE // Default setting for new folks