isaacscript-common 2.0.18 → 2.0.19
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.
|
@@ -191,6 +191,7 @@ commandFunctionsMap:set("pickupsdisplay", commandsDisplay.pickupsDisplay)
|
|
|
191
191
|
commandFunctionsMap:set("pill", commands.pill)
|
|
192
192
|
commandFunctionsMap:set("pills", commands.pills)
|
|
193
193
|
commandFunctionsMap:set("pitdisplay", commandsDisplay.pitDisplay)
|
|
194
|
+
commandFunctionsMap:set("pitsdisplay", commandsDisplay.pitsDisplay)
|
|
194
195
|
commandFunctionsMap:set("planetarium", commands.planetarium)
|
|
195
196
|
commandFunctionsMap:set("playerdisplay", commandsDisplay.playerDisplay)
|
|
196
197
|
commandFunctionsMap:set("playersdisplay", commandsDisplay.playersDisplay)
|
|
@@ -198,14 +199,17 @@ commandFunctionsMap:set("playsound", commands.playSound)
|
|
|
198
199
|
commandFunctionsMap:set("pocket", commands.pocket)
|
|
199
200
|
commandFunctionsMap:set("poopdisplay", commandsDisplay.poopDisplay)
|
|
200
201
|
commandFunctionsMap:set("poopmana", commands.poopMana)
|
|
202
|
+
commandFunctionsMap:set("poopsdisplay", commandsDisplay.poopsDisplay)
|
|
201
203
|
commandFunctionsMap:set("position", commands.positionCommand)
|
|
202
204
|
commandFunctionsMap:set("pressureplatedisplay", commandsDisplay.pressurePlateDisplay)
|
|
205
|
+
commandFunctionsMap:set("pressureplatesdisplay", commandsDisplay.pressurePlatesDisplay)
|
|
203
206
|
commandFunctionsMap:set("projectiledisplay", commandsDisplay.projectileDisplay)
|
|
204
207
|
commandFunctionsMap:set("projectilesdisplay", commandsDisplay.projectilesDisplay)
|
|
205
208
|
commandFunctionsMap:set("redhearts", commands.redHearts)
|
|
206
209
|
commandFunctionsMap:set("rh", commands.rh)
|
|
207
210
|
commandFunctionsMap:set("right", commands.right)
|
|
208
211
|
commandFunctionsMap:set("rockdisplay", commandsDisplay.rockDisplay)
|
|
212
|
+
commandFunctionsMap:set("rocksdisplay", commandsDisplay.rocksDisplay)
|
|
209
213
|
commandFunctionsMap:set("room", commands.roomCommand)
|
|
210
214
|
commandFunctionsMap:set("rottenhearts", commands.rottenHearts)
|
|
211
215
|
commandFunctionsMap:set("s", commands.s)
|
|
@@ -227,6 +231,7 @@ commandFunctionsMap:set("sounds", commands.sounds)
|
|
|
227
231
|
commandFunctionsMap:set("spam", commands.spam)
|
|
228
232
|
commandFunctionsMap:set("spawngoldentrinket", commands.spawnGoldenTrinket)
|
|
229
233
|
commandFunctionsMap:set("speed", commands.speed)
|
|
234
|
+
commandFunctionsMap:set("spikedisplay", commandsDisplay.spikeDisplay)
|
|
230
235
|
commandFunctionsMap:set("spikesdisplay", commandsDisplay.spikesDisplay)
|
|
231
236
|
commandFunctionsMap:set("supersecret", commands.superSecret)
|
|
232
237
|
commandFunctionsMap:set("startingroom", commands.startingRoom)
|
|
@@ -234,6 +239,7 @@ commandFunctionsMap:set("teardisplay", commandsDisplay.tearDisplay)
|
|
|
234
239
|
commandFunctionsMap:set("tears", commands.tears)
|
|
235
240
|
commandFunctionsMap:set("tearsdisplay", commandsDisplay.tearsDisplay)
|
|
236
241
|
commandFunctionsMap:set("tntdisplay", commandsDisplay.tntDisplay)
|
|
242
|
+
commandFunctionsMap:set("tntsdisplay", commandsDisplay.tntsDisplay)
|
|
237
243
|
commandFunctionsMap:set("trapdoor", commands.trapdoorCommand)
|
|
238
244
|
commandFunctionsMap:set("treasure", commands.treasure)
|
|
239
245
|
commandFunctionsMap:set("ultrasecret", commands.ultraSecret)
|
|
@@ -35,6 +35,8 @@ local ____postGridEntity = require("callbacks.postGridEntity")
|
|
|
35
35
|
local postGridEntityCallbacksInit = ____postGridEntity.postGridEntityCallbacksInit
|
|
36
36
|
local ____postGridEntityCollision = require("callbacks.postGridEntityCollision")
|
|
37
37
|
local postGridEntityCollisionInit = ____postGridEntityCollision.postGridEntityCollisionInit
|
|
38
|
+
local ____postGridEntityRender = require("callbacks.postGridEntityRender")
|
|
39
|
+
local postGridEntityRenderInit = ____postGridEntityRender.postGridEntityRenderInit
|
|
38
40
|
local ____postHolyMantleRemoved = require("callbacks.postHolyMantleRemoved")
|
|
39
41
|
local postHolyMantleRemovedCallbackInit = ____postHolyMantleRemoved.postHolyMantleRemovedCallbackInit
|
|
40
42
|
local ____postItemDischarged = require("callbacks.postItemDischarged")
|
|
@@ -132,6 +134,7 @@ function ____exports.initCustomCallbacks(self, mod)
|
|
|
132
134
|
postGreedModeWaveCallbackInit(nil, mod)
|
|
133
135
|
postGridEntityCallbacksInit(nil, mod)
|
|
134
136
|
postGridEntityCollisionInit(nil, mod)
|
|
137
|
+
postGridEntityRenderInit(nil, mod)
|
|
135
138
|
postHolyMantleRemovedCallbackInit(nil, mod)
|
|
136
139
|
postItemDischargeCallbackInit(nil, mod)
|
|
137
140
|
postLaserInitLateCallbackInit(nil, mod)
|