Skip to content

Commit

Permalink
fix: broadcast-less legacy support
Browse files Browse the repository at this point in the history
  • Loading branch information
L3P3 committed Jan 10, 2025
1 parent f44c9cd commit ed0336f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "minicraft",
"version": "0.11.4",
"version": "0.11.5",
"description": "voxel-based 3d game, written in javascript",
"homepage": "https://l3p3.de/minicraft",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/etc/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const Math_sqrt = Math_.sqrt;
export const Math_log2 = Math_.log2;
export const String_fromCharCode = String.fromCharCode;

export const BroadcastChannel_ = BroadcastChannel;
export const BroadcastChannel_ = window_.BroadcastChannel;
const Date_ = Date;
export const Date_now = () => Date_.now();
const JSON_ = JSON;
Expand Down

0 comments on commit ed0336f

Please sign in to comment.