Skip to content

Commit 0b999ec

Browse files
committed
fix: migrate all url_open packets to high priority group
1 parent eece760 commit 0b999ec

19 files changed

Lines changed: 19 additions & 19 deletions

File tree

  • protocol
    • osrs-221/osrs-221-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-222/osrs-222-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-223/osrs-223-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-224/osrs-224-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-225/osrs-225-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-226/osrs-226-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-227/osrs-227-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-228/osrs-228-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-229/osrs-229-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-230/osrs-230-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-231/osrs-231-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-232/osrs-232-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-233/osrs-233-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-234/osrs-234-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-235/osrs-235-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-236/osrs-236-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-237/osrs-237-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-238/osrs-238-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client
    • osrs-239/osrs-239-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client

protocol/osrs-221/osrs-221-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client/UrlOpen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class UrlOpen(
1313
public val url: String,
1414
) : OutgoingGameMessage {
1515
override val category: ServerProtCategory
16-
get() = GameServerProtCategory.LOW_PRIORITY_PROT
16+
get() = GameServerProtCategory.HIGH_PRIORITY_PROT
1717

1818
override fun equals(other: Any?): Boolean {
1919
if (this === other) return true

protocol/osrs-222/osrs-222-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client/UrlOpen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class UrlOpen(
1313
public val url: String,
1414
) : OutgoingGameMessage {
1515
override val category: ServerProtCategory
16-
get() = GameServerProtCategory.LOW_PRIORITY_PROT
16+
get() = GameServerProtCategory.HIGH_PRIORITY_PROT
1717

1818
override fun equals(other: Any?): Boolean {
1919
if (this === other) return true

protocol/osrs-223/osrs-223-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client/UrlOpen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class UrlOpen(
1313
public val url: String,
1414
) : OutgoingGameMessage {
1515
override val category: ServerProtCategory
16-
get() = GameServerProtCategory.LOW_PRIORITY_PROT
16+
get() = GameServerProtCategory.HIGH_PRIORITY_PROT
1717

1818
override fun equals(other: Any?): Boolean {
1919
if (this === other) return true

protocol/osrs-224/osrs-224-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client/UrlOpen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class UrlOpen(
1313
public val url: String,
1414
) : OutgoingGameMessage {
1515
override val category: ServerProtCategory
16-
get() = GameServerProtCategory.LOW_PRIORITY_PROT
16+
get() = GameServerProtCategory.HIGH_PRIORITY_PROT
1717

1818
override fun equals(other: Any?): Boolean {
1919
if (this === other) return true

protocol/osrs-225/osrs-225-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client/UrlOpen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class UrlOpen(
1414
public val url: String,
1515
) : OutgoingGameMessage {
1616
override val category: ServerProtCategory
17-
get() = GameServerProtCategory.LOW_PRIORITY_PROT
17+
get() = GameServerProtCategory.HIGH_PRIORITY_PROT
1818

1919
override fun estimateSize(): Int {
2020
return estimateTextSize(url)

protocol/osrs-226/osrs-226-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client/UrlOpen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class UrlOpen(
1414
public val url: String,
1515
) : OutgoingGameMessage {
1616
override val category: ServerProtCategory
17-
get() = GameServerProtCategory.LOW_PRIORITY_PROT
17+
get() = GameServerProtCategory.HIGH_PRIORITY_PROT
1818

1919
override fun estimateSize(): Int {
2020
return estimateTextSize(url)

protocol/osrs-227/osrs-227-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client/UrlOpen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class UrlOpen(
1414
public val url: String,
1515
) : OutgoingGameMessage {
1616
override val category: ServerProtCategory
17-
get() = GameServerProtCategory.LOW_PRIORITY_PROT
17+
get() = GameServerProtCategory.HIGH_PRIORITY_PROT
1818

1919
override fun estimateSize(): Int {
2020
return estimateTextSize(url)

protocol/osrs-228/osrs-228-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client/UrlOpen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class UrlOpen(
1414
public val url: String,
1515
) : OutgoingGameMessage {
1616
override val category: ServerProtCategory
17-
get() = GameServerProtCategory.LOW_PRIORITY_PROT
17+
get() = GameServerProtCategory.HIGH_PRIORITY_PROT
1818

1919
override fun estimateSize(): Int {
2020
return estimateTextSize(url)

protocol/osrs-229/osrs-229-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client/UrlOpen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class UrlOpen(
1414
public val url: String,
1515
) : OutgoingGameMessage {
1616
override val category: ServerProtCategory
17-
get() = GameServerProtCategory.LOW_PRIORITY_PROT
17+
get() = GameServerProtCategory.HIGH_PRIORITY_PROT
1818

1919
override fun estimateSize(): Int {
2020
return estimateTextSize(url)

protocol/osrs-230/osrs-230-model/src/main/kotlin/net/rsprot/protocol/game/outgoing/misc/client/UrlOpen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class UrlOpen(
1414
public val url: String,
1515
) : OutgoingGameMessage {
1616
override val category: ServerProtCategory
17-
get() = GameServerProtCategory.LOW_PRIORITY_PROT
17+
get() = GameServerProtCategory.HIGH_PRIORITY_PROT
1818

1919
override fun estimateSize(): Int {
2020
return estimateTextSize(url)

0 commit comments

Comments
 (0)