@quenty/playerinputmode 9.7.2-canary.499.60b3012.0 → 9.8.0

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/CHANGELOG.md CHANGED
@@ -3,7 +3,7 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [9.7.2-canary.499.60b3012.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerinputmode@9.7.1...@quenty/playerinputmode@9.7.2-canary.499.60b3012.0) (2024-09-24)
6
+ # [9.8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerinputmode@9.7.1...@quenty/playerinputmode@9.8.0) (2024-09-25)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/playerinputmode
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/playerinputmode",
3
- "version": "9.7.2-canary.499.60b3012.0",
3
+ "version": "9.8.0",
4
4
  "description": "Service that takes active input modes from the player and exposes it to every other player via the server.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,20 +26,20 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/attributeutils": "14.5.1-canary.499.60b3012.0",
30
- "@quenty/brio": "14.5.1-canary.499.60b3012.0",
31
- "@quenty/inputmode": "13.6.2-canary.499.60b3012.0",
32
- "@quenty/loader": "10.4.0",
33
- "@quenty/maid": "3.3.0",
34
- "@quenty/playerutils": "8.5.1-canary.499.60b3012.0",
35
- "@quenty/promise": "10.4.0",
36
- "@quenty/remoting": "12.6.1-canary.499.60b3012.0",
37
- "@quenty/rx": "13.5.1-canary.499.60b3012.0",
38
- "@quenty/servicebag": "11.5.1",
39
- "@quenty/table": "3.5.0"
29
+ "@quenty/attributeutils": "^14.6.0",
30
+ "@quenty/brio": "^14.6.0",
31
+ "@quenty/inputmode": "^13.7.0",
32
+ "@quenty/loader": "^10.5.0",
33
+ "@quenty/maid": "^3.3.0",
34
+ "@quenty/playerutils": "^8.6.0",
35
+ "@quenty/promise": "^10.5.0",
36
+ "@quenty/remoting": "^12.7.0",
37
+ "@quenty/rx": "^13.6.0",
38
+ "@quenty/servicebag": "^11.6.0",
39
+ "@quenty/table": "^3.5.0"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "60b3012c35a2bf7c3c6a01ec440f9d639b9ad0cc"
44
+ "gitHead": "41715b15e2b48b2d22ff4f5277a8d4b7a0d32ef3"
45
45
  }
@@ -72,7 +72,7 @@ function PlayerInputModeService:_handleServerEvent(player, request, ...)
72
72
  if request == PlayerInputModeServiceConstants.REQUEST_SET_INPUT_MODE then
73
73
  self:_setPlayerInputModeType(player, ...)
74
74
  else
75
- error(("[PlayerInputModeService] - Bad request %q"):format(tostring(request)))
75
+ error(string.format("[PlayerInputModeService] - Bad request %q", tostring(request)))
76
76
  end
77
77
  end
78
78