Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
theripper93 committed Oct 29, 2023
1 parent 5f03374 commit 23d1130
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 8 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion packs/macros/CURRENT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MANIFEST-000311
MANIFEST-000320
4 changes: 3 additions & 1 deletion packs/macros/LOG
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
2023/10/26-14:00:02.437 3b48 Delete type=3 #1
2023/10/29-09:44:24.342 1f00 Recovering log #317
2023/10/29-09:44:24.352 1f00 Delete type=0 #317
2023/10/29-09:44:24.354 1f00 Delete type=3 #315
18 changes: 13 additions & 5 deletions packs/macros/LOG.old
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
2023/10/26-14:00:02.405 3b48 Log #309: 0 ops saved to Table #310 OK
2023/10/26-14:00:02.407 3b48 Archiving C:\Users\tspla\AppData\Local\FoundryVTT\Data\modules\splatter\packs\macros/000309.log: OK
2023/10/26-14:00:02.410 3b48 Table #5: 4 entries OK
2023/10/26-14:00:02.413 3b48 Archiving C:\Users\tspla\AppData\Local\FoundryVTT\Data\modules\splatter\packs\macros/MANIFEST-000308: OK
2023/10/26-14:00:02.421 3b48 **** Repaired leveldb C:\Users\tspla\AppData\Local\FoundryVTT\Data\modules\splatter\packs\macros; recovered 1 files; 1377 bytes. Some data may have been lost. ****
2023/10/28-10:27:51.870 61ac Recovering log #314
2023/10/28-10:27:51.878 61ac Delete type=0 #314
2023/10/28-10:27:51.878 61ac Delete type=3 #313
2023/10/28-10:28:16.190 521c Level-0 table #318: started
2023/10/28-10:28:16.190 521c Level-0 table #318: 0 bytes OK
2023/10/28-10:28:16.192 521c Delete type=0 #316
2023/10/28-10:28:16.192 521c Manual compaction at level-0 from '!macros!0xkDU2f2dzJFeVj3' @ 72057594037927935 : 1 .. '!macros!Fqe8bYO5u9Izswqm' @ 0 : 0; will stop at '!macros!Fqe8bYO5u9Izswqm' @ 4 : 1
2023/10/28-10:28:16.192 521c Compacting 1@0 + 0@1 files
2023/10/28-10:28:16.195 521c Generated table #319@0: 4 keys, 1377 bytes
2023/10/28-10:28:16.195 521c Compacted 1@0 + 0@1 files => 1377 bytes
2023/10/28-10:28:16.196 521c compacted to: files[ 0 1 0 0 0 0 0 ]
2023/10/28-10:28:16.196 521c Delete type=2 #5
2023/10/28-10:28:16.197 521c Manual compaction at level-0 from '!macros!Fqe8bYO5u9Izswqm' @ 4 : 1 .. '!macros!Fqe8bYO5u9Izswqm' @ 0 : 0; will stop at (end)
Binary file removed packs/macros/MANIFEST-000311
Binary file not shown.
Binary file added packs/macros/MANIFEST-000320
Binary file not shown.
2 changes: 1 addition & 1 deletion scripts/BloodSplatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ class BloodSplatterContainerManager{
this.containers.push(container);
Object.defineProperty(container, "visible", {
get: () => {
return CONFIG?.Levels?.currentToken?.losHeight >= elevation ?? true;
return CONFIG?.Levels?.currentToken?.losHeight !== undefined ? CONFIG?.Levels?.currentToken?.losHeight >= elevation : true;
}
})
return container;
Expand Down

0 comments on commit 23d1130

Please sign in to comment.