Skip to content

runelite merge 1.2.24#1694

Merged
chsami merged 13 commits intomainfrom
development
Mar 12, 2026
Merged

runelite merge 1.2.24#1694
chsami merged 13 commits intomainfrom
development

Conversation

@chsami
Copy link
Owner

@chsami chsami commented Mar 12, 2026

No description provided.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Mar 12, 2026

Walkthrough

This pull request updates RuneLite and Microbot to version 1.12.20 and 2.1.24 respectively, and introduces new game constants and data structures related to minigame features. Changes include new minigame-related item IDs, interface elements, database table definitions, sprite constants, and varbit/varplayer identifiers. The PR also increments four spellbook interface IDs in the interface configuration file, adds new mining site location data, expands sprite icon definitions, and updates region mappings.

Possibly related PRs

  • Development #1684: Introduces overlapping minigame-related API constants including item IDs, null IDs around 33138, interface elements, and database table entries for minigame teleports.
  • chore(gradle): update microbot version to 2.1.0 #1634: Modifies the same gradle.properties file to update microbot.version to 2.1.24.
  • 2.0.38 #1595: Updates the same generated identifier files (NullItemID, ItemID) to add and modify game ID constants.
🚥 Pre-merge checks | ✅ 1 | ❌ 2

❌ Failed checks (1 warning, 1 inconclusive)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
Description check ❓ Inconclusive No pull request description was provided by the author, making it impossible to evaluate whether it relates to the changeset. Add a pull request description explaining the purpose of the version bump and the nature of the API/configuration changes included in this merge.
✅ Passed checks (1 passed)
Check name Status Explanation
Title check ✅ Passed The title 'runelite merge 1.2.24' directly reflects the main changes: version updates in gradle.properties from 1.12.19 to 1.12.20 and microbot.version from 2.1.23 to 2.1.24, along with API updates.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
  • 📝 Generate docstrings (stacked PR)
  • 📝 Generate docstrings (commit on current branch)

Warning

There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure.

🔧 ast-grep (0.41.0)
runelite-api/src/main/java/net/runelite/api/NullItemID.java
runelite-api/src/main/java/net/runelite/api/gameval/DBTableID.java
runelite-api/src/main/java/net/runelite/api/gameval/InterfaceID.java
  • 4 others

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
runelite-client/src/main/java/net/runelite/client/plugins/interfacestyles/SpriteOverride.java (1)

112-114: GLOW_HUNTER and GLOW_CONSTRUCTION are ordered inconsistently.

All prior GLOW_* entries follow ascending StatSilhouette index order (_0 through _19), but here _22 (HUNTER) is listed before _21 (CONSTRUCTION). For consistency with the established pattern:

Suggested reorder
 	GLOW_SLAYER(SpriteID.StatSilhouette._19, AROUND_2010),
-	GLOW_HUNTER(SpriteID.StatSilhouette._22, AROUND_2010),
 	GLOW_CONSTRUCTION(SpriteID.StatSilhouette._21, AROUND_2010),
+	GLOW_HUNTER(SpriteID.StatSilhouette._22, AROUND_2010),
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In
`@runelite-client/src/main/java/net/runelite/client/plugins/interfacestyles/SpriteOverride.java`
around lines 112 - 114, The GLOW_* enum entries are out of order: swap the
positions of GLOW_HUNTER and GLOW_CONSTRUCTION so the SpriteID.StatSilhouette
indices are ascending (place GLOW_CONSTRUCTION with SpriteID.StatSilhouette._21
before GLOW_HUNTER with SpriteID.StatSilhouette._22) to match the established
ordering pattern in the SpriteOverride enum.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In
`@runelite-client/src/main/resources/net/runelite/client/plugins/gpu/regions/regions.txt`:
- Around line 412-414: The area header comment "dream mentor battle" is followed
by a commented-out `n` command so the `r 28 80` region gets attached to the
previous "ancient cavern ds2" area; either uncomment the `n` command to start a
new area for "dream mentor battle" or, if this region is intentionally part of
"ancient cavern ds2", update the comment to indicate it's grouped—look for the
`//n` line above `r 28 80` and either remove the leading `//` to enable the `n`
area separator or change the area comment text to reflect grouping.

---

Nitpick comments:
In
`@runelite-client/src/main/java/net/runelite/client/plugins/interfacestyles/SpriteOverride.java`:
- Around line 112-114: The GLOW_* enum entries are out of order: swap the
positions of GLOW_HUNTER and GLOW_CONSTRUCTION so the SpriteID.StatSilhouette
indices are ascending (place GLOW_CONSTRUCTION with SpriteID.StatSilhouette._21
before GLOW_HUNTER with SpriteID.StatSilhouette._22) to match the established
ordering pattern in the SpriteOverride enum.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro

Run ID: 492ef320-747d-4f71-8c32-55adda4bb7ac

📥 Commits

Reviewing files that changed from the base of the PR and between 7955e88 and 75f1e45.

⛔ Files ignored due to path filters (21)
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7431.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7432.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7433.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7434.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7436.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7437.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7438.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7439.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7440.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7441.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7442.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7443.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7444.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7445.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7446.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7447.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7448.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7449.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7450.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7452.png is excluded by !**/*.png
  • runelite-client/src/main/resources/net/runelite/client/plugins/interfacestyles/2010/7453.png is excluded by !**/*.png
📒 Files selected for processing (15)
  • gradle.properties
  • runelite-api/src/main/interfaces/interfaces.toml
  • runelite-api/src/main/java/net/runelite/api/NullItemID.java
  • runelite-api/src/main/java/net/runelite/api/gameval/DBTableID.java
  • runelite-api/src/main/java/net/runelite/api/gameval/InterfaceID.java
  • runelite-api/src/main/java/net/runelite/api/gameval/InventoryID.java
  • runelite-api/src/main/java/net/runelite/api/gameval/ItemID.java
  • runelite-api/src/main/java/net/runelite/api/gameval/SpriteID.java
  • runelite-api/src/main/java/net/runelite/api/gameval/VarPlayerID.java
  • runelite-api/src/main/java/net/runelite/api/gameval/VarbitID.java
  • runelite-client/src/main/java/net/runelite/client/account/SessionManager.java
  • runelite-client/src/main/java/net/runelite/client/plugins/interfacestyles/SpriteOverride.java
  • runelite-client/src/main/java/net/runelite/client/plugins/worldmap/MiningSiteLocation.java
  • runelite-client/src/main/java/net/runelite/client/util/RuntimeTypeAdapterFactory.java
  • runelite-client/src/main/resources/net/runelite/client/plugins/gpu/regions/regions.txt

Comment on lines +412 to +414
// dream mentor battle
//n
r 28 80
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Inconsistent: n command is commented out but area comment suggests a distinct region.

The n command on line 413 is commented out (//n), so r 28 80 will be assigned to the previous area's ID (ancient cavern ds2) rather than starting a new "dream mentor battle" area. This breaks the pattern used throughout the file where each named area starts with an n command.

If "dream mentor battle" should be its own distinct area, uncomment the n. If it's intentionally grouped with the previous area, the comment should reflect that.

Proposed fix if this should be a distinct area
 // dream mentor battle
-//n
+n
 r 28 80
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
// dream mentor battle
//n
r 28 80
// dream mentor battle
n
r 28 80
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In
`@runelite-client/src/main/resources/net/runelite/client/plugins/gpu/regions/regions.txt`
around lines 412 - 414, The area header comment "dream mentor battle" is
followed by a commented-out `n` command so the `r 28 80` region gets attached to
the previous "ancient cavern ds2" area; either uncomment the `n` command to
start a new area for "dream mentor battle" or, if this region is intentionally
part of "ancient cavern ds2", update the comment to indicate it's grouped—look
for the `//n` line above `r 28 80` and either remove the leading `//` to enable
the `n` area separator or change the area comment text to reflect grouping.

@chsami chsami merged commit 5771671 into main Mar 12, 2026
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants