Skip to content

Commit f2448b7

Browse files
committed
Oops! Hotfix for loading of spawnables and subscriptions
1 parent a227565 commit f2448b7

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ https://github.com/edencomputing/attprefabulator/releases/
1111
<a href="https://github.com/edencomputing/attprefabulator/releases/"><img src="public/images/prefabulator_controls.png" width="30%" height="30%" alt="Prefab Controls"></a>
1212

1313
### Release Notes
14+
- v1.6.2 - Oops! Hotfix for loading of spawnables and subscriptions
15+
1416
- v1.6.1 - Added prefab and group cloning! Also time of day to server settings, and title tags to all icon-only controls.
1517

1618
- v1.6.0 - Added item grouping, group selection, and moving (and rotating!) groups of objects together

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,8 +349,8 @@ server.get('/control', asyncMid( async ( req, res, next ) => {
349349
}
350350

351351
try {
352-
//await loadSpawnableItems(req)
353-
//await loadSubscriptions(req)
352+
await loadSpawnableItems(req)
353+
await loadSubscriptions(req)
354354
//console.log( subscriptionList )
355355
console.log( "rendering control" )
356356
res.render("control", { version: version, serverUserId: userId, serverUsername: userName, serverName: sname, spawnableItems: spawnableItemsList, subscriptions: subscriptionList, subscribed: subscribedSubscriptions })

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "prefabulator",
3-
"version": "1.6.1",
3+
"version": "1.6.2",
44
"productName": "Prefabulator",
55
"description": "Add, remove and modify prefabs in A Township Tale",
66
"main": "electron-start.js",

0 commit comments

Comments
 (0)