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.0
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] = "s.default",
26087
+ [RoomType.DEFAULT] = "d",
26088
26088
  [RoomType.SHOP] = "s.shop",
26089
26089
  [RoomType.ERROR] = "s.error",
26090
26090
  [RoomType.TREASURE] = "s.treasure",
@@ -1,5 +1,5 @@
1
1
  export declare const ROOM_TYPE_GOTO_PREFIXES: {
2
- readonly 1: "s.default";
2
+ readonly 1: "d";
3
3
  readonly 2: "s.shop";
4
4
  readonly 3: "s.error";
5
5
  readonly 4: "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] = "s.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,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-common",
3
- "version": "21.6.0",
3
+ "version": "21.6.1",
4
4
  "description": "Helper functions and features for IsaacScript mods.",
5
5
  "keywords": [
6
6
  "isaac",
@@ -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]: "s.default", // 1
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