Skip to content

@empirica/core@1.8.12

Compare
Choose a tag to compare
@github-actions github-actions released this 26 Dec 07:14
· 57 commits to main since this release
656d19b

Patch Changes

  • c20ca73: Fix setting attributes with the same mutated object as the current one.

    For example, before this patch, the value would not be saved, since we are
    reusing the same object, which we've only mutated in place:

    const value = player.get("myobject");
    value["mykey"] = "myvalue";
    player.set("myobject", value);
  • d1816ad: Ensure usePlayers never returns undefined (expect in unmanaged games).