@rbxts/covenant 3.3.4 → 3.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/covenant",
3
- "version": "3.3.4",
3
+ "version": "3.3.6",
4
4
  "main": "src/init.luau",
5
5
  "scripts": {
6
6
  "build": "rbxtsc",
package/src/covenant.luau CHANGED
@@ -379,7 +379,7 @@ do
379
379
  self._world:set(entity, component, newState)
380
380
  end
381
381
  if self.logging and RunService:IsStudio() then
382
- print(`{self:getComponentName(component)}.{entity}:{tableToString(lastState)}->{tableToString(newState)}`)
382
+ print(`{self:getComponentName(component)}.{entity}."{if doNotReconcile then "remote" else "local"}":{tableToString(lastState)}->{tableToString(newState)}`)
383
383
  end
384
384
  local _stringifiedComponentSubscribers = self.stringifiedComponentSubscribers
385
385
  local _arg0 = tostring(component)
@@ -3,7 +3,7 @@ local function tableToString(table)
3
3
  if type(table) == "table" then
4
4
  s = s .. "{ "
5
5
  for i, v in pairs(table) do
6
- s = s .. "(" tableToString(i) .. " = " .. tableToString(v) .. "), "
6
+ s = s .. "(" .. tableToString(i) .. " = " .. tableToString(v) .. "), "
7
7
  end
8
8
  s = s .. "}"
9
9
  else