Skip to content

Commit 8521303

Browse files
committed
Allow the "varp" type to be referenced
1 parent 636921b commit 8521303

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- Add support for optional boolean argument in cc_create
88
- Update types and trigger names to match the latest decompiler output
99
- Add prefix and postfix expression support
10+
- Allow the "varp" type to be referenced
1011

1112
## [1.7.1] - 2025-01-12
1213

src/main/kotlin/io/runescript/plugin/lang/psi/type/RsPrimitiveType.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ enum class RsPrimitiveType(val literal: String, val referencable: Boolean = true
5151
CLIENTOPOBJ("clientopobj"),
5252
CLIENTOPPLAYER("clientopplayer"),
5353
CLIENTOPTILE("clientoptile"),
54+
VARP("varp"),
5455
// Non-Referencable types
5556
PARAM("param", referencable = false),
5657
FLO("flo", referencable = false),
5758
FLU("flu", referencable = false),
58-
VARP("varp", referencable = false),
5959
VARBIT("varbit", referencable = false),
6060
VARCLAN("varclan", referencable = false),
6161
VARCLANSETTING("varclansetting", referencable = false),

0 commit comments

Comments
 (0)