isaacscript-common 21.6.0 → 21.6.1
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
--[[
|
|
2
2
|
|
|
3
|
-
isaacscript-common 21.6.
|
|
3
|
+
isaacscript-common 21.6.1
|
|
4
4
|
|
|
5
5
|
This is the "isaacscript-common" library, which was created with the IsaacScript tool.
|
|
6
6
|
|
|
@@ -26084,7 +26084,7 @@ local ____exports = {}
|
|
|
26084
26084
|
local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
|
|
26085
26085
|
local RoomType = ____isaac_2Dtypescript_2Ddefinitions.RoomType
|
|
26086
26086
|
____exports.ROOM_TYPE_GOTO_PREFIXES = {
|
|
26087
|
-
[RoomType.DEFAULT] = "
|
|
26087
|
+
[RoomType.DEFAULT] = "d",
|
|
26088
26088
|
[RoomType.SHOP] = "s.shop",
|
|
26089
26089
|
[RoomType.ERROR] = "s.error",
|
|
26090
26090
|
[RoomType.TREASURE] = "s.treasure",
|
|
@@ -2,7 +2,7 @@ local ____exports = {}
|
|
|
2
2
|
local ____isaac_2Dtypescript_2Ddefinitions = require("isaac-typescript-definitions")
|
|
3
3
|
local RoomType = ____isaac_2Dtypescript_2Ddefinitions.RoomType
|
|
4
4
|
____exports.ROOM_TYPE_GOTO_PREFIXES = {
|
|
5
|
-
[RoomType.DEFAULT] = "
|
|
5
|
+
[RoomType.DEFAULT] = "d",
|
|
6
6
|
[RoomType.SHOP] = "s.shop",
|
|
7
7
|
[RoomType.ERROR] = "s.error",
|
|
8
8
|
[RoomType.TREASURE] = "s.treasure",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RoomType } from "isaac-typescript-definitions";
|
|
2
2
|
|
|
3
3
|
export const ROOM_TYPE_GOTO_PREFIXES = {
|
|
4
|
-
[RoomType.DEFAULT]: "
|
|
4
|
+
[RoomType.DEFAULT]: "d", // 1
|
|
5
5
|
[RoomType.SHOP]: "s.shop", // 2
|
|
6
6
|
[RoomType.ERROR]: "s.error", // 3
|
|
7
7
|
[RoomType.TREASURE]: "s.treasure", // 4
|