isaacscript-common 1.0.540 → 1.0.541
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/dist/upgradeMod.lua +3 -0
- package/package.json +1 -1
package/dist/upgradeMod.lua
CHANGED
|
@@ -54,6 +54,8 @@ local ____postSlotRenderBroken = require("callbacks.postSlotRenderBroken")
|
|
|
54
54
|
local postSlotRenderBrokenCallbacksInit = ____postSlotRenderBroken.postSlotRenderBrokenCallbacksInit
|
|
55
55
|
local ____postTearInitLate = require("callbacks.postTearInitLate")
|
|
56
56
|
local postTearInitLateCallbackInit = ____postTearInitLate.postTearInitLateCallbackInit
|
|
57
|
+
local ____postTearInitVeryLate = require("callbacks.postTearInitVeryLate")
|
|
58
|
+
local postTearInitVeryLateCallbackInit = ____postTearInitVeryLate.postTearInitVeryLateCallbackInit
|
|
57
59
|
local ____postTransformation = require("callbacks.postTransformation")
|
|
58
60
|
local postTransformationCallbackInit = ____postTransformation.postTransformationCallbackInit
|
|
59
61
|
local ____preNewLevel = require("callbacks.preNewLevel")
|
|
@@ -89,6 +91,7 @@ function initCustomCallbacks(self, mod)
|
|
|
89
91
|
postPlayerReorderedCallbacksInit(nil, mod)
|
|
90
92
|
postPlayerInitLateCallbackInit(nil, mod)
|
|
91
93
|
postTearInitLateCallbackInit(nil, mod)
|
|
94
|
+
postTearInitVeryLateCallbackInit(nil, mod)
|
|
92
95
|
postFamiliarInitLateCallbackInit(nil, mod)
|
|
93
96
|
postBombInitLateCallbackInit(nil, mod)
|
|
94
97
|
postPickupInitLateCallbackInit(nil, mod)
|