isaacscript-common 1.0.573 → 1.0.574
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/functions/rooms.lua +3 -1
- package/package.json +1 -1
package/dist/functions/rooms.lua
CHANGED
|
@@ -297,7 +297,9 @@ function ____exports.setRoomCleared(self)
|
|
|
297
297
|
if isHiddenSecretRoomDoor(nil, door) then
|
|
298
298
|
goto __continue56
|
|
299
299
|
end
|
|
300
|
-
door
|
|
300
|
+
door.State = DoorState.STATE_OPEN
|
|
301
|
+
local sprite = door:GetSprite()
|
|
302
|
+
sprite:Play("Opened", true)
|
|
301
303
|
door.ExtraVisible = false
|
|
302
304
|
end
|
|
303
305
|
::__continue56::
|