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:
parent
2d42669545
commit
52a49f554e
3 changed files with 5 additions and 4 deletions
|
|
@ -2,8 +2,8 @@ plugins {
|
|||
id 'java-library'
|
||||
id 'maven-publish'
|
||||
id 'idea'
|
||||
id 'net.neoforged.moddev' version '2.0.80'
|
||||
id 'org.jetbrains.kotlin.jvm' version '2.0.0'
|
||||
id 'net.neoforged.moddev' version '2.0.141'
|
||||
id 'org.jetbrains.kotlin.jvm' version '2.3.0'
|
||||
}
|
||||
|
||||
version = mod_version
|
||||
|
|
@ -103,7 +103,7 @@ sourceSets.main.resources { srcDir 'src/generated/resources' }
|
|||
|
||||
|
||||
dependencies {
|
||||
implementation 'thedarkcolour:kotlinforforge-neoforge:5.3.0'
|
||||
implementation 'thedarkcolour:kotlinforforge-neoforge:5.11.0'
|
||||
|
||||
// Example mod dependency with JEI
|
||||
// The JEI API is declared for compile time use, while the full JEI artifact is used at runtime
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ minecraft_version=1.21.1
|
|||
# as they do not follow standard versioning conventions.
|
||||
minecraft_version_range=[1.21.1,1.22)
|
||||
# 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
|
||||
neo_version_range=[21,)
|
||||
# The loader version range can only use the major version of FML as bounds
|
||||
|
|
|
|||
|
|
@ -281,6 +281,7 @@ fun createPageContainer(player: ServerPlayer, page: Int): SimpleContainer {
|
|||
DataComponents.CUSTOM_MODEL_DATA,
|
||||
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줄 건너뛰기)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue