Tabletop targeted actions now work

This commit is contained in:
Stefan Zermatten
2023-01-15 14:18:17 +02:00
parent 25e6b19b49
commit ceb170cbcf
9 changed files with 188 additions and 201 deletions

View File

@@ -66,7 +66,7 @@ Meteor.publish('tabletop', function (tabletopId) {
const logs = CreatureLogs.find({
tabletopId,
}, {
limit: 50,
limit: 100,
sort: { date: -1 },
});
return [tabletopCursor, creatureSummaries, properties, logs, variables]