Skip to content

Instantly share code, notes, and snippets.

@benprime
Created September 6, 2018 00:47
Show Gist options
  • Save benprime/9be02eb052cdd2607d6eef86363f5533 to your computer and use it in GitHub Desktop.
Save benprime/9be02eb052cdd2607d6eef86363f5533 to your computer and use it in GitHub Desktop.
const StatusEnum = {
UNHARMED: 0,
LIGHTLY_WOUNDED: 1,
MODERATELY_WOUNDED: 2,
SEVERELY_WOUNDED: 3,
INCAPACITATED: 4,
};
// later in the code...
player.status = StatusEnum.UNHAMRED; // typo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment