Skip to content

Commit

Permalink
Fixed a simple typo (#2748)
Browse files Browse the repository at this point in the history
  • Loading branch information
hannibal002 authored Oct 16, 2024
1 parent d7941eb commit f4fa81e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,8 @@ object BestiaryData {
return true
} else if (name == "Search Results") {
val loreList = stack.getLore()
if (loreList.size >= 2 && loreList[0].startsWith("§7Query: §a") &&
if (loreList.size >= 2 &&
loreList[0].startsWith("§7Query: §a") &&
loreList[1].startsWith("§7Results: §a")
) {
return true
Expand All @@ -464,7 +465,7 @@ object BestiaryData {

enum class NumberType(val type: String) {
INT("Normal (1, 2, 3)"),
ROMAN("Roman (I, II, III")
ROMAN("Roman (I, II, III)")
}

enum class DisplayType(val type: String) {
Expand Down

0 comments on commit f4fa81e

Please sign in to comment.