chore(essentials): NeoForge 21.1.227 업그레이드 및 좌표 GUI 툴팁 수정

- NeoForge 21.1.194 → 21.1.227, moddev 2.0.141, Kotlin 2.3.0, KFF 5.11.0
- 좌표 GUI의 FILLED_MAP 아이템에 HIDE_ADDITIONAL_TOOLTIP 추가로
  "알 수 없는 지도" 자동 툴팁 제거

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Caadiq 2026-04-23 14:58:14 +09:00
parent 2d42669545
commit 52a49f554e
3 changed files with 5 additions and 4 deletions

View file

@ -2,8 +2,8 @@ plugins {
id 'java-library' id 'java-library'
id 'maven-publish' id 'maven-publish'
id 'idea' id 'idea'
id 'net.neoforged.moddev' version '2.0.80' id 'net.neoforged.moddev' version '2.0.141'
id 'org.jetbrains.kotlin.jvm' version '2.0.0' id 'org.jetbrains.kotlin.jvm' version '2.3.0'
} }
version = mod_version version = mod_version
@ -103,7 +103,7 @@ sourceSets.main.resources { srcDir 'src/generated/resources' }
dependencies { dependencies {
implementation 'thedarkcolour:kotlinforforge-neoforge:5.3.0' implementation 'thedarkcolour:kotlinforforge-neoforge:5.11.0'
// Example mod dependency with JEI // Example mod dependency with JEI
// The JEI API is declared for compile time use, while the full JEI artifact is used at runtime // The JEI API is declared for compile time use, while the full JEI artifact is used at runtime

View file

@ -13,7 +13,7 @@ minecraft_version=1.21.1
# as they do not follow standard versioning conventions. # as they do not follow standard versioning conventions.
minecraft_version_range=[1.21.1,1.22) minecraft_version_range=[1.21.1,1.22)
# The Neo version must agree with the Minecraft version to get a valid artifact # The Neo version must agree with the Minecraft version to get a valid artifact
neo_version=21.1.194 neo_version=21.1.227
# The Neo version range can use any version of Neo as bounds # The Neo version range can use any version of Neo as bounds
neo_version_range=[21,) neo_version_range=[21,)
# The loader version range can only use the major version of FML as bounds # The loader version range can only use the major version of FML as bounds

View file

@ -281,6 +281,7 @@ fun createPageContainer(player: ServerPlayer, page: Int): SimpleContainer {
DataComponents.CUSTOM_MODEL_DATA, DataComponents.CUSTOM_MODEL_DATA,
net.minecraft.world.item.component.CustomModelData(1) net.minecraft.world.item.component.CustomModelData(1)
) )
item.set(DataComponents.HIDE_ADDITIONAL_TOOLTIP, net.minecraft.util.Unit.INSTANCE)
container.setItem(9 + (i - startIdx), item) // 슬롯 9부터 시작 (1줄 건너뛰기) container.setItem(9 + (i - startIdx), item) // 슬롯 9부터 시작 (1줄 건너뛰기)
} }