Fixed load order for allow deny constants on Character.js

This commit is contained in:
Thaum
2015-03-16 08:21:50 +00:00
parent e0db87c174
commit 4d64c36df9
5 changed files with 0 additions and 0 deletions

View File

@@ -1,22 +0,0 @@
Schemas.DeathSave = new SimpleSchema({
pass: {
type: Number,
min: 0,
max: 3,
defaultValue: 0
},
fail: {
type: Number,
min: 0,
max: 3,
defaultValue: 0
},
canDeathSave: {
type: Boolean,
defaultValue: true
},
stable: {
type: Boolean,
defaultValue: false
}
});