Created
September 6, 2018 00:47
-
-
Save benprime/9be02eb052cdd2607d6eef86363f5533 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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