tpmkms_4wp 7.12.3 → 7.12.4-beta.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/common/avatar.js +1 -2
- package/common/comparable.js +1 -1
- package/common/concept.js +2 -0
- package/common/countable.js +1 -1
- package/common/crew.instance.json +68 -0
- package/common/crew.js +3 -2
- package/common/currency.js +2 -0
- package/common/dialogues.js +4 -1
- package/common/dimension.js +3 -1
- package/common/edible.js +1 -2
- package/common/emotions.js +2 -0
- package/common/fastfood.instance.json +1015 -655
- package/common/fastfood.js +142 -59
- package/common/fastfood.test.json +15441 -1354
- package/common/formulas.js +3 -1
- package/common/formulasTemplate.js +1 -1
- package/common/help.js +2 -0
- package/common/hierarchy.js +2 -0
- package/common/javascript.js +2 -0
- package/common/math.js +1 -4
- package/common/mathTemplate.js +1 -1
- package/common/ordering.js +2 -0
- package/common/people.instance.json +0 -60
- package/common/people.js +2 -0
- package/common/pipboy.js +3 -1
- package/common/pipboy.test.json +13 -5
- package/common/pipboyTemplate.js +1 -1
- package/common/pokemon.js +2 -0
- package/common/properties.js +3 -3
- package/common/reports.instance.json +1 -1
- package/common/reports.js +4 -1
- package/common/scorekeeper.js +3 -3
- package/common/sizeable.js +1 -1
- package/common/stgame.js +2 -0
- package/common/tell.js +2 -0
- package/common/temperature.instance.json +0 -84
- package/common/time.js +2 -0
- package/common/ui.js +3 -1
- package/package.json +2 -2
package/common/time.js
CHANGED
@@ -156,6 +156,7 @@ const configStruct = {
|
|
156
156
|
|
157
157
|
const createConfig = () => {
|
158
158
|
const config = new Config(configStruct, module)
|
159
|
+
config.stop_auto_rebuild()
|
159
160
|
config.add(tell())
|
160
161
|
config.api = api
|
161
162
|
config.initializer( ({config, objects, kms, isModule}) => {
|
@@ -170,6 +171,7 @@ const createConfig = () => {
|
|
170
171
|
apply: api.semantics
|
171
172
|
})
|
172
173
|
})
|
174
|
+
config.restart_auto_rebuild()
|
173
175
|
return config
|
174
176
|
}
|
175
177
|
|
package/common/ui.js
CHANGED
@@ -186,8 +186,10 @@ const template = {
|
|
186
186
|
|
187
187
|
const createConfig = () => {
|
188
188
|
const config = new Config(configStruct, module)
|
189
|
-
config.
|
189
|
+
config.stop_auto_rebuild()
|
190
|
+
config.add(dialogues(), math())
|
190
191
|
config.api = new API()
|
192
|
+
config.restart_auto_rebuild()
|
191
193
|
return config
|
192
194
|
}
|
193
195
|
|
package/package.json
CHANGED
@@ -281,8 +281,8 @@
|
|
281
281
|
"table": "^6.7.1",
|
282
282
|
"base-64": "^1.0.0",
|
283
283
|
"argparse": "^2.0.1",
|
284
|
-
"theprogrammablemind_4wp": "7.12.
|
284
|
+
"theprogrammablemind_4wp": "7.12.4-beta.0"
|
285
285
|
},
|
286
|
-
"version": "7.12.
|
286
|
+
"version": "7.12.4-beta.0",
|
287
287
|
"license": "UNLICENSED"
|
288
288
|
}
|