Added XP, changed spellslot display

This commit is contained in:
Thaum
2015-02-20 10:09:53 +00:00
parent 93578709cd
commit bd86c1608e
18 changed files with 355 additions and 45 deletions

View File

@@ -8,6 +8,7 @@ Meteor.publish("singleCharacter", function(characterId, userId){
Effects.find({charId: characterId}),
Spells.find({charId: characterId}),
SpellLists.find({charId: characterId}),
Notes.find({charId: characterId})
Notes.find({charId: characterId}),
Experiences.find({charId: characterId})
];
});
});