init
This commit is contained in:
105
build.gradle
Normal file
105
build.gradle
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
plugins {
|
||||||
|
id 'fabric-loom' version '1.14-SNAPSHOT'
|
||||||
|
id 'maven-publish'
|
||||||
|
}
|
||||||
|
|
||||||
|
version = project.mod_version
|
||||||
|
group = project.maven_group
|
||||||
|
|
||||||
|
base {
|
||||||
|
archivesName = project.archives_base_name
|
||||||
|
}
|
||||||
|
|
||||||
|
loom {
|
||||||
|
splitEnvironmentSourceSets()
|
||||||
|
|
||||||
|
mods {
|
||||||
|
"szar" {
|
||||||
|
sourceSet sourceSets.main
|
||||||
|
sourceSet sourceSets.client
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fabricApi {
|
||||||
|
configureDataGeneration {
|
||||||
|
client = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
// Add repositories to retrieve artifacts from in here.
|
||||||
|
// You should only use this when depending on other mods because
|
||||||
|
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
|
||||||
|
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
|
||||||
|
// for more information about repositories.
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
// To change the versions see the gradle.properties file
|
||||||
|
minecraft "com.mojang:minecraft:${project.minecraft_version}"
|
||||||
|
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
|
||||||
|
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
|
||||||
|
|
||||||
|
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
||||||
|
}
|
||||||
|
|
||||||
|
processResources {
|
||||||
|
inputs.property "version", project.version
|
||||||
|
inputs.property "minecraft_version", project.minecraft_version
|
||||||
|
inputs.property "loader_version", project.loader_version
|
||||||
|
filteringCharset "UTF-8"
|
||||||
|
|
||||||
|
filesMatching("fabric.mod.json") {
|
||||||
|
expand "version": project.version,
|
||||||
|
"minecraft_version": project.minecraft_version,
|
||||||
|
"loader_version": project.loader_version
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def targetJavaVersion = 17
|
||||||
|
tasks.withType(JavaCompile).configureEach {
|
||||||
|
// ensure that the encoding is set to UTF-8, no matter what the system default is
|
||||||
|
// this fixes some edge cases with special characters not displaying correctly
|
||||||
|
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
|
||||||
|
// If Javadoc is generated, this must be specified in that task too.
|
||||||
|
it.options.encoding = "UTF-8"
|
||||||
|
if (targetJavaVersion >= 10 || JavaVersion.current().isJava10Compatible()) {
|
||||||
|
it.options.release.set(targetJavaVersion)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
java {
|
||||||
|
def javaVersion = JavaVersion.toVersion(targetJavaVersion)
|
||||||
|
if (JavaVersion.current() < javaVersion) {
|
||||||
|
toolchain.languageVersion = JavaLanguageVersion.of(targetJavaVersion)
|
||||||
|
}
|
||||||
|
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
|
||||||
|
// if it is present.
|
||||||
|
// If you remove this line, sources will not be generated.
|
||||||
|
withSourcesJar()
|
||||||
|
}
|
||||||
|
|
||||||
|
jar {
|
||||||
|
from("LICENSE") {
|
||||||
|
rename { "${it}_${project.archivesBaseName}" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// configure the maven publication
|
||||||
|
publishing {
|
||||||
|
publications {
|
||||||
|
create("mavenJava", MavenPublication) {
|
||||||
|
artifactId = project.archives_base_name
|
||||||
|
from components.java
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
|
||||||
|
repositories {
|
||||||
|
// Add repositories to publish to here.
|
||||||
|
// Notice: This block does NOT have the same function as the block in the top level.
|
||||||
|
// The repositories here will be used for publishing your artifact, not for
|
||||||
|
// retrieving dependencies.
|
||||||
|
}
|
||||||
|
}
|
||||||
14
gradle.properties
Normal file
14
gradle.properties
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
# Done to increase the memory available to gradle.
|
||||||
|
org.gradle.jvmargs=-Xmx1G
|
||||||
|
# Fabric Properties
|
||||||
|
# check these on https://modmuss50.me/fabric.html
|
||||||
|
minecraft_version=1.20.1
|
||||||
|
yarn_mappings=1.20.1+build.10
|
||||||
|
loader_version=0.18.3
|
||||||
|
# Mod Properties
|
||||||
|
mod_version=1.0-SNAPSHOT
|
||||||
|
maven_group=dev.tggamesyt
|
||||||
|
archives_base_name=szar
|
||||||
|
# Dependencies
|
||||||
|
# check this on https://modmuss50.me/fabric.html
|
||||||
|
fabric_version=0.92.6+1.20.1
|
||||||
9
run/config/fabric/indigo-renderer.properties
Normal file
9
run/config/fabric/indigo-renderer.properties
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
#Indigo properties file
|
||||||
|
#Wed Dec 17 09:29:51 CET 2025
|
||||||
|
always-tesselate-blocks=auto
|
||||||
|
ambient-occlusion-mode=hybrid
|
||||||
|
debug-compare-lighting=auto
|
||||||
|
fix-exterior-vertex-lighting=auto
|
||||||
|
fix-luminous-block-ambient-occlusion=auto
|
||||||
|
fix-mean-light-calculation=auto
|
||||||
|
fix-smooth-lighting-offset=auto
|
||||||
235
run/crash-reports/crash-2025-12-17_08.53.30-client.txt
Normal file
235
run/crash-reports/crash-2025-12-17_08.53.30-client.txt
Normal file
@@ -0,0 +1,235 @@
|
|||||||
|
---- Minecraft Crash Report ----
|
||||||
|
// I bet Cylons wouldn't have this problem.
|
||||||
|
|
||||||
|
Time: 2025-12-17 08:53:30
|
||||||
|
Description: Initializing game
|
||||||
|
|
||||||
|
java.lang.RuntimeException: Could not execute entrypoint stage 'main' due to errors, provided by 'szar' at 'dev.tggamesyt.szar.Szar'!
|
||||||
|
at net.fabricmc.loader.impl.FabricLoaderImpl.lambda$invokeEntrypoints$0(FabricLoaderImpl.java:409)
|
||||||
|
at net.fabricmc.loader.impl.util.ExceptionUtil.gatherExceptions(ExceptionUtil.java:33)
|
||||||
|
at net.fabricmc.loader.impl.FabricLoaderImpl.invokeEntrypoints(FabricLoaderImpl.java:407)
|
||||||
|
at net.fabricmc.loader.impl.game.minecraft.Hooks.startClient(Hooks.java:52)
|
||||||
|
at knot//net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:458)
|
||||||
|
at knot//net.minecraft.client.main.Main.main(Main.java:211)
|
||||||
|
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:514)
|
||||||
|
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:72)
|
||||||
|
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23)
|
||||||
|
at net.fabricmc.devlaunchinjector.Main.main(Main.java:86)
|
||||||
|
Caused by: java.lang.RuntimeException: Attempted to register object Block{szar:cigany} twice! (at raw IDs 1003 and 1004 )
|
||||||
|
at knot//net.minecraft.registry.SimpleRegistry.handler$zjf000$fabric-registry-sync-v0$setPre(SimpleRegistry.java:693)
|
||||||
|
at knot//net.minecraft.registry.SimpleRegistry.set(SimpleRegistry.java)
|
||||||
|
at knot//net.minecraft.registry.SimpleDefaultedRegistry.set(SimpleDefaultedRegistry.java:23)
|
||||||
|
at knot//net.minecraft.registry.SimpleRegistry.add(SimpleRegistry.java:186)
|
||||||
|
at knot//net.minecraft.registry.Registry.register(Registry.java:118)
|
||||||
|
at knot//net.minecraft.registry.Registry.register(Registry.java:114)
|
||||||
|
at knot//dev.tggamesyt.szar.Szar.onInitialize(Szar.java:36)
|
||||||
|
at net.fabricmc.loader.impl.FabricLoaderImpl.invokeEntrypoints(FabricLoaderImpl.java:405)
|
||||||
|
... 7 more
|
||||||
|
|
||||||
|
|
||||||
|
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||||
|
---------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
-- Head --
|
||||||
|
Thread: Render thread
|
||||||
|
Stacktrace:
|
||||||
|
at net.fabricmc.loader.impl.FabricLoaderImpl.lambda$invokeEntrypoints$0(FabricLoaderImpl.java:409)
|
||||||
|
at net.fabricmc.loader.impl.util.ExceptionUtil.gatherExceptions(ExceptionUtil.java:33)
|
||||||
|
at net.fabricmc.loader.impl.FabricLoaderImpl.invokeEntrypoints(FabricLoaderImpl.java:407)
|
||||||
|
at net.fabricmc.loader.impl.game.minecraft.Hooks.startClient(Hooks.java:52)
|
||||||
|
at knot//net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:458)
|
||||||
|
|
||||||
|
-- Initialization --
|
||||||
|
Details:
|
||||||
|
Modules:
|
||||||
|
ADVAPI32.dll:Speciális 32 bites Windows API:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
COMCTL32.dll:Felhasználói élmény vezérlőinek kódtára:6.10 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
CRYPT32.dll:Crypto API32:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
CRYPTBASE.dll:Base cryptographic API DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
CRYPTSP.dll:Cryptographic Service Provider API:10.0.22621.3672 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
DBGHELP.DLL:Windows Image Helper:10.0.22621.3593 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
DNSAPI.dll:DNS-ügyfél API DLL-je:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
GDI32.dll:GDI Client DLL:10.0.22621.4036 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
IMM32.DLL:Multi-User Windows IMM32 API Client DLL:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
IPHLPAPI.DLL:IP Helper API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
KERNEL32.DLL:Win32 kernel mag komponens:10.0.22621.4317 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
KERNELBASE.dll:Win32 kernel mag komponens:10.0.22621.4317 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
MpOav.dll:IOfficeAntiVirus Module:4.18.25110.5 (4a6978a838df7287d907bb2ee8a2eeb2373b186e):Microsoft Corporation
|
||||||
|
NSI.dll:NSI User-mode interface DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
NTASN1.dll:Microsoft ASN.1 API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
OLEAUT32.dll:OLEAUT32.DLL:10.0.22621.3672 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
Ole32.dll:Microsoft OLE for Windows:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
POWRPROF.dll:Energiagazdálkodási profil - Segítő DLL:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
PSAPI.DLL:Process Status Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
Pdh.dll:Windows Performance Data Helper DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
RPCRT4.dll:Távoli eljáráshívás – futásidejű:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
SHCORE.dll:SHCORE:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
SHELL32.dll:Windows felület - közös DLL:10.0.22621.4596 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
UMPDC.dll:User Mode Power Dependency Coordinator:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
USER32.dll:A Windows többfelhasználós USER API-jának ügyféloldali DLL-je:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
USERENV.dll:Userenv:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
VCRUNTIME140.dll:Microsoft® C Runtime Library:14.36.32532.0:Microsoft Corporation
|
||||||
|
VERSION.dll:Version Checking and File Installation Libraries:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
WINHTTP.dll:Windows HTTP-szolgáltatások:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
WINMM.dll:MCI API DLL:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
WS2_32.dll:Windows Socket 2.0 32 bites DLL:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
amsi.dll:Anti-Malware Scan Interface:10.0.22621.3527 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
bcrypt.dll:Windows kriptográfiai primitívek kódtára:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
bcryptPrimitives.dll:Windows Cryptographic Primitives Library:10.0.22621.4317 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
clbcatq.dll:COM+ Configuration Catalog:2001.12.10941.16384 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
combase.dll:Microsoft COM for Windows:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
dbgcore.DLL:Windows Core Debugging Helpers:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
extnet.dll:Java(TM) Platform SE binary:21.0.7.0:Oracle Corporation
|
||||||
|
fwpuclnt.dll:FWP/IPsec felhasználói módú API:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
gdi32full.dll:GDI Client DLL:10.0.22621.4317 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
iertutil.dll:Futtatókörnyezeti segédprogram az Internet Explorer alkalmazáshoz:11.00.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
java.dll:Java(TM) Platform SE binary:21.0.7.0:Oracle Corporation
|
||||||
|
java.exe:Java(TM) Platform SE binary:21.0.7.0:Oracle Corporation
|
||||||
|
jemalloc.dll
|
||||||
|
jimage.dll:Java(TM) Platform SE binary:21.0.7.0:Oracle Corporation
|
||||||
|
jli.dll:Java(TM) Platform SE binary:21.0.7.0:Oracle Corporation
|
||||||
|
jna2897839068891651457.dll:JNA native library:6.1.4:Java(TM) Native Access (JNA)
|
||||||
|
jsvml.dll:Java(TM) Platform SE binary:21.0.7.0:Oracle Corporation
|
||||||
|
jvm.dll:Java HotSpot(TM) 64-Bit server VM:21.0.7.0:Oracle Corporation
|
||||||
|
kernel.appcore.dll:AppModel API Host:10.0.22621.3958 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
lwjgl.dll
|
||||||
|
management.dll:Java(TM) Platform SE binary:21.0.7.0:Oracle Corporation
|
||||||
|
management_ext.dll:Java(TM) Platform SE binary:21.0.7.0:Oracle Corporation
|
||||||
|
msvcp140.dll:Microsoft® C Runtime Library:14.36.32532.0:Microsoft Corporation
|
||||||
|
msvcp_win.dll:Microsoft® C Runtime Library:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
msvcrt.dll:Windows NT CRT DLL:7.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
mswsock.dll:Microsoft Windows Sockets 2.0 szolgáltató:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
napinsp.dll:E-mail elnevezési köztes szolgáltató:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
ncrypt.dll:Windows NCrypt-útválasztó:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
net.dll:Java(TM) Platform SE binary:21.0.7.0:Oracle Corporation
|
||||||
|
netutils.dll:Net Win32 API Helpers DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
nio.dll:Java(TM) Platform SE binary:21.0.7.0:Oracle Corporation
|
||||||
|
nlansp_c.dll:NLA Namespace Service Provider DLL:10.0.22621.4249 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
ntdll.dll:NT réteg DLL:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
perfos.dll:Windows - a rendszer teljesítményobjektumainak DLL-je:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
pfclient.dll:SysMain Client:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
pnrpnsp.dll:PNRP-névtérszolgáltató:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
profapi.dll:User Profile Basic API:10.0.22621.4111 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
rasadhlp.dll:Remote Access AutoDial Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
rsaenh.dll:Microsoft Enhanced Cryptographic Provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
sechost.dll:Host for SCM/SDDL/LSA Lookup APIs:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
shlwapi.dll:Shell Light-weight Utility Library:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
srvcli.dll:Server Service Client DLL:10.0.22621.4249 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
sunmscapi.dll:Java(TM) Platform SE binary:21.0.7.0:Oracle Corporation
|
||||||
|
ucrtbase.dll:Microsoft® C Runtime Library:10.0.22621.3593 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
urlmon.dll:OLE32 Extensions for Win32:11.00.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
vcruntime140_1.dll:Microsoft® C Runtime Library:14.36.32532.0:Microsoft Corporation
|
||||||
|
verify.dll:Java(TM) Platform SE binary:21.0.7.0:Oracle Corporation
|
||||||
|
win32u.dll:Win32u:10.0.22621.4317 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
windows.storage.dll:Microsoft WinRT tárolási API:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
winrnr.dll:LDAP RnR Provider DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
wintypes.dll:Windows-alaptípusok DLL-je:10.0.22621.6133 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
wshbth.dll:Windows Sockets Helper DLL:10.0.22621.3958 (WinBuild.160101.0800):Microsoft Corporation
|
||||||
|
zip.dll:Java(TM) Platform SE binary:21.0.7.0:Oracle Corporation
|
||||||
|
Stacktrace:
|
||||||
|
at knot//net.minecraft.client.main.Main.main(Main.java:211)
|
||||||
|
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:514)
|
||||||
|
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:72)
|
||||||
|
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23)
|
||||||
|
at net.fabricmc.devlaunchinjector.Main.main(Main.java:86)
|
||||||
|
|
||||||
|
-- System Details --
|
||||||
|
Details:
|
||||||
|
Minecraft Version: 1.20.1
|
||||||
|
Minecraft Version ID: 1.20.1
|
||||||
|
Operating System: Windows 11 (amd64) version 10.0
|
||||||
|
Java Version: 21.0.7, Oracle Corporation
|
||||||
|
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
|
||||||
|
Memory: 25902648 bytes (24 MiB) / 316669952 bytes (302 MiB) up to 2134900736 bytes (2036 MiB)
|
||||||
|
CPUs: 6
|
||||||
|
Processor Vendor: GenuineIntel
|
||||||
|
Processor Name: Intel(R) Core(TM) i5-9400F CPU @ 2.90GHz
|
||||||
|
Identifier: Intel64 Family 6 Model 158 Stepping 10
|
||||||
|
Microarchitecture: Coffee Lake
|
||||||
|
Frequency (GHz): 2.90
|
||||||
|
Number of physical packages: 1
|
||||||
|
Number of physical CPUs: 6
|
||||||
|
Number of logical CPUs: 6
|
||||||
|
Graphics card #0 name: NVIDIA GeForce GT 710
|
||||||
|
Graphics card #0 vendor: NVIDIA (0x10de)
|
||||||
|
Graphics card #0 VRAM (MB): 1024.00
|
||||||
|
Graphics card #0 deviceId: 0x128b
|
||||||
|
Graphics card #0 versionInfo: DriverVersion=27.21.14.5671
|
||||||
|
Memory slot #0 capacity (MB): 8192.00
|
||||||
|
Memory slot #0 clockSpeed (GHz): 2.40
|
||||||
|
Memory slot #0 type: DDR4
|
||||||
|
Virtual memory max (MB): 17356.23
|
||||||
|
Virtual memory used (MB): 13915.21
|
||||||
|
Swap memory total (MB): 9216.00
|
||||||
|
Swap memory used (MB): 1195.94
|
||||||
|
JVM Flags: 0 total;
|
||||||
|
Fabric Mods:
|
||||||
|
fabric-api: Fabric API 0.92.6+1.20.1
|
||||||
|
fabric-api-base: Fabric API Base 0.4.32+1802ada577
|
||||||
|
fabric-api-lookup-api-v1: Fabric API Lookup API (v1) 1.6.37+1802ada577
|
||||||
|
fabric-biome-api-v1: Fabric Biome API (v1) 13.0.14+1802ada577
|
||||||
|
fabric-block-api-v1: Fabric Block API (v1) 1.0.12+1802ada577
|
||||||
|
fabric-block-view-api-v2: Fabric BlockView API (v2) 1.0.3+924f046a77
|
||||||
|
fabric-blockrenderlayer-v1: Fabric BlockRenderLayer Registration (v1) 1.1.42+1802ada577
|
||||||
|
fabric-client-tags-api-v1: Fabric Client Tags 1.1.3+1802ada577
|
||||||
|
fabric-command-api-v1: Fabric Command API (v1) 1.2.35+f71b366f77
|
||||||
|
fabric-command-api-v2: Fabric Command API (v2) 2.2.14+1802ada577
|
||||||
|
fabric-commands-v0: Fabric Commands (v0) 0.2.52+df3654b377
|
||||||
|
fabric-containers-v0: Fabric Containers (v0) 0.1.67+df3654b377
|
||||||
|
fabric-content-registries-v0: Fabric Content Registries (v0) 4.0.13+1802ada577
|
||||||
|
fabric-convention-tags-v1: Fabric Convention Tags 1.5.6+1802ada577
|
||||||
|
fabric-crash-report-info-v1: Fabric Crash Report Info (v1) 0.2.20+1802ada577
|
||||||
|
fabric-data-attachment-api-v1: Fabric Data Attachment API (v1) 1.0.2+de0fd6d177
|
||||||
|
fabric-data-generation-api-v1: Fabric Data Generation API (v1) 12.3.7+1802ada577
|
||||||
|
fabric-dimensions-v1: Fabric Dimensions API (v1) 2.1.55+1802ada577
|
||||||
|
fabric-entity-events-v1: Fabric Entity Events (v1) 1.6.1+1c78457f77
|
||||||
|
fabric-events-interaction-v0: Fabric Events Interaction (v0) 0.6.5+13a40c6677
|
||||||
|
fabric-events-lifecycle-v0: Fabric Events Lifecycle (v0) 0.2.64+df3654b377
|
||||||
|
fabric-game-rule-api-v1: Fabric Game Rule API (v1) 1.0.41+1802ada577
|
||||||
|
fabric-gametest-api-v1: Fabric Game Test API (v1) 1.2.15+1802ada577
|
||||||
|
fabric-item-api-v1: Fabric Item API (v1) 2.1.29+1802ada577
|
||||||
|
fabric-item-group-api-v1: Fabric Item Group API (v1) 4.0.14+1802ada577
|
||||||
|
fabric-key-binding-api-v1: Fabric Key Binding API (v1) 1.0.38+1802ada577
|
||||||
|
fabric-keybindings-v0: Fabric Key Bindings (v0) 0.2.36+df3654b377
|
||||||
|
fabric-lifecycle-events-v1: Fabric Lifecycle Events (v1) 2.2.23+1802ada577
|
||||||
|
fabric-loot-api-v2: Fabric Loot API (v2) 1.2.3+1802ada577
|
||||||
|
fabric-loot-tables-v1: Fabric Loot Tables (v1) 1.1.47+9e7660c677
|
||||||
|
fabric-message-api-v1: Fabric Message API (v1) 5.1.10+1802ada577
|
||||||
|
fabric-mining-level-api-v1: Fabric Mining Level API (v1) 2.1.52+1802ada577
|
||||||
|
fabric-model-loading-api-v1: Fabric Model Loading API (v1) 1.0.4+1802ada577
|
||||||
|
fabric-models-v0: Fabric Models (v0) 0.4.3+9386d8a777
|
||||||
|
fabric-networking-api-v1: Fabric Networking API (v1) 1.3.14+a158aa0477
|
||||||
|
fabric-networking-v0: Fabric Networking (v0) 0.3.54+df3654b377
|
||||||
|
fabric-object-builder-api-v1: Fabric Object Builder API (v1) 11.1.5+e35120df77
|
||||||
|
fabric-particles-v1: Fabric Particles (v1) 1.1.3+1802ada577
|
||||||
|
fabric-recipe-api-v1: Fabric Recipe API (v1) 1.0.24+1802ada577
|
||||||
|
fabric-registry-sync-v0: Fabric Registry Sync (v0) 2.3.6+1802ada577
|
||||||
|
fabric-renderer-api-v1: Fabric Renderer API (v1) 3.2.2+1802ada577
|
||||||
|
fabric-renderer-indigo: Fabric Renderer - Indigo 1.5.3+85287f9f77
|
||||||
|
fabric-renderer-registries-v1: Fabric Renderer Registries (v1) 3.2.47+df3654b377
|
||||||
|
fabric-rendering-data-attachment-v1: Fabric Rendering Data Attachment (v1) 0.3.39+92a0d36777
|
||||||
|
fabric-rendering-fluids-v1: Fabric Rendering Fluids (v1) 3.0.29+1802ada577
|
||||||
|
fabric-rendering-v0: Fabric Rendering (v0) 1.1.50+df3654b377
|
||||||
|
fabric-rendering-v1: Fabric Rendering (v1) 3.0.9+1802ada577
|
||||||
|
fabric-resource-conditions-api-v1: Fabric Resource Conditions API (v1) 2.3.9+1802ada577
|
||||||
|
fabric-resource-loader-v0: Fabric Resource Loader (v0) 0.11.12+fb82e9d777
|
||||||
|
fabric-screen-api-v1: Fabric Screen API (v1) 2.0.9+1802ada577
|
||||||
|
fabric-screen-handler-api-v1: Fabric Screen Handler API (v1) 1.3.33+1802ada577
|
||||||
|
fabric-sound-api-v1: Fabric Sound API (v1) 1.0.14+1802ada577
|
||||||
|
fabric-transfer-api-v1: Fabric Transfer API (v1) 3.3.6+8dd72ea377
|
||||||
|
fabric-transitive-access-wideners-v1: Fabric Transitive Access Wideners (v1) 4.3.2+1802ada577
|
||||||
|
fabricloader: Fabric Loader 0.18.3
|
||||||
|
java: Java HotSpot(TM) 64-Bit Server VM 21
|
||||||
|
minecraft: Minecraft 1.20.1
|
||||||
|
mixinextras: MixinExtras 0.5.0
|
||||||
|
szar: szar 1.0-SNAPSHOT
|
||||||
|
Launched Version: Fabric
|
||||||
|
Backend library: LWJGL version 3.3.2-snapshot
|
||||||
|
Backend API: Unknown
|
||||||
|
Window size: <not initialized>
|
||||||
|
GL Caps: Using framebuffer using OpenGL 3.2
|
||||||
|
GL debug messages: <disabled>
|
||||||
|
Using VBOs: Yes
|
||||||
|
Is Modded: Definitely; Client brand changed to 'fabric'
|
||||||
|
Type: Client (map_client.txt)
|
||||||
|
CPU: <unknown>
|
||||||
BIN
run/data/fabricDefaultResourcePacks.dat
Normal file
BIN
run/data/fabricDefaultResourcePacks.dat
Normal file
Binary file not shown.
BIN
run/logs/2025-12-17-1.log.gz
Normal file
BIN
run/logs/2025-12-17-1.log.gz
Normal file
Binary file not shown.
BIN
run/logs/2025-12-17-2.log.gz
Normal file
BIN
run/logs/2025-12-17-2.log.gz
Normal file
Binary file not shown.
BIN
run/logs/2025-12-17-3.log.gz
Normal file
BIN
run/logs/2025-12-17-3.log.gz
Normal file
Binary file not shown.
BIN
run/logs/2025-12-17-4.log.gz
Normal file
BIN
run/logs/2025-12-17-4.log.gz
Normal file
Binary file not shown.
BIN
run/logs/2025-12-17-5.log.gz
Normal file
BIN
run/logs/2025-12-17-5.log.gz
Normal file
Binary file not shown.
BIN
run/logs/2025-12-17-6.log.gz
Normal file
BIN
run/logs/2025-12-17-6.log.gz
Normal file
Binary file not shown.
BIN
run/logs/2025-12-17-7.log.gz
Normal file
BIN
run/logs/2025-12-17-7.log.gz
Normal file
Binary file not shown.
BIN
run/logs/debug-1.log.gz
Normal file
BIN
run/logs/debug-1.log.gz
Normal file
Binary file not shown.
BIN
run/logs/debug-2.log.gz
Normal file
BIN
run/logs/debug-2.log.gz
Normal file
Binary file not shown.
BIN
run/logs/debug-3.log.gz
Normal file
BIN
run/logs/debug-3.log.gz
Normal file
Binary file not shown.
BIN
run/logs/debug-4.log.gz
Normal file
BIN
run/logs/debug-4.log.gz
Normal file
Binary file not shown.
BIN
run/logs/debug-5.log.gz
Normal file
BIN
run/logs/debug-5.log.gz
Normal file
Binary file not shown.
2474
run/logs/debug.log
Normal file
2474
run/logs/debug.log
Normal file
File diff suppressed because it is too large
Load Diff
149
run/logs/latest.log
Normal file
149
run/logs/latest.log
Normal file
@@ -0,0 +1,149 @@
|
|||||||
|
[09:29:38] [main/INFO] (FabricLoader/GameProvider) Loading Minecraft 1.20.1 with Fabric Loader 0.18.3
|
||||||
|
[09:29:39] [main/INFO] (FabricLoader) Loading 59 mods:
|
||||||
|
- fabric-api 0.92.6+1.20.1
|
||||||
|
- fabric-api-base 0.4.32+1802ada577
|
||||||
|
- fabric-api-lookup-api-v1 1.6.37+1802ada577
|
||||||
|
- fabric-biome-api-v1 13.0.14+1802ada577
|
||||||
|
- fabric-block-api-v1 1.0.12+1802ada577
|
||||||
|
- fabric-block-view-api-v2 1.0.3+924f046a77
|
||||||
|
- fabric-blockrenderlayer-v1 1.1.42+1802ada577
|
||||||
|
- fabric-client-tags-api-v1 1.1.3+1802ada577
|
||||||
|
- fabric-command-api-v1 1.2.35+f71b366f77
|
||||||
|
- fabric-command-api-v2 2.2.14+1802ada577
|
||||||
|
- fabric-commands-v0 0.2.52+df3654b377
|
||||||
|
- fabric-containers-v0 0.1.67+df3654b377
|
||||||
|
- fabric-content-registries-v0 4.0.13+1802ada577
|
||||||
|
- fabric-convention-tags-v1 1.5.6+1802ada577
|
||||||
|
- fabric-crash-report-info-v1 0.2.20+1802ada577
|
||||||
|
- fabric-data-attachment-api-v1 1.0.2+de0fd6d177
|
||||||
|
- fabric-data-generation-api-v1 12.3.7+1802ada577
|
||||||
|
- fabric-dimensions-v1 2.1.55+1802ada577
|
||||||
|
- fabric-entity-events-v1 1.6.1+1c78457f77
|
||||||
|
- fabric-events-interaction-v0 0.6.5+13a40c6677
|
||||||
|
- fabric-events-lifecycle-v0 0.2.64+df3654b377
|
||||||
|
- fabric-game-rule-api-v1 1.0.41+1802ada577
|
||||||
|
- fabric-gametest-api-v1 1.2.15+1802ada577
|
||||||
|
- fabric-item-api-v1 2.1.29+1802ada577
|
||||||
|
- fabric-item-group-api-v1 4.0.14+1802ada577
|
||||||
|
- fabric-key-binding-api-v1 1.0.38+1802ada577
|
||||||
|
- fabric-keybindings-v0 0.2.36+df3654b377
|
||||||
|
- fabric-lifecycle-events-v1 2.2.23+1802ada577
|
||||||
|
- fabric-loot-api-v2 1.2.3+1802ada577
|
||||||
|
- fabric-loot-tables-v1 1.1.47+9e7660c677
|
||||||
|
- fabric-message-api-v1 5.1.10+1802ada577
|
||||||
|
- fabric-mining-level-api-v1 2.1.52+1802ada577
|
||||||
|
- fabric-model-loading-api-v1 1.0.4+1802ada577
|
||||||
|
- fabric-models-v0 0.4.3+9386d8a777
|
||||||
|
- fabric-networking-api-v1 1.3.14+a158aa0477
|
||||||
|
- fabric-networking-v0 0.3.54+df3654b377
|
||||||
|
- fabric-object-builder-api-v1 11.1.5+e35120df77
|
||||||
|
- fabric-particles-v1 1.1.3+1802ada577
|
||||||
|
- fabric-recipe-api-v1 1.0.24+1802ada577
|
||||||
|
- fabric-registry-sync-v0 2.3.6+1802ada577
|
||||||
|
- fabric-renderer-api-v1 3.2.2+1802ada577
|
||||||
|
- fabric-renderer-indigo 1.5.3+85287f9f77
|
||||||
|
- fabric-renderer-registries-v1 3.2.47+df3654b377
|
||||||
|
- fabric-rendering-data-attachment-v1 0.3.39+92a0d36777
|
||||||
|
- fabric-rendering-fluids-v1 3.0.29+1802ada577
|
||||||
|
- fabric-rendering-v0 1.1.50+df3654b377
|
||||||
|
- fabric-rendering-v1 3.0.9+1802ada577
|
||||||
|
- fabric-resource-conditions-api-v1 2.3.9+1802ada577
|
||||||
|
- fabric-resource-loader-v0 0.11.12+fb82e9d777
|
||||||
|
- fabric-screen-api-v1 2.0.9+1802ada577
|
||||||
|
- fabric-screen-handler-api-v1 1.3.33+1802ada577
|
||||||
|
- fabric-sound-api-v1 1.0.14+1802ada577
|
||||||
|
- fabric-transfer-api-v1 3.3.6+8dd72ea377
|
||||||
|
- fabric-transitive-access-wideners-v1 4.3.2+1802ada577
|
||||||
|
- fabricloader 0.18.3
|
||||||
|
- java 21
|
||||||
|
- minecraft 1.20.1
|
||||||
|
- mixinextras 0.5.0
|
||||||
|
- szar 1.0-SNAPSHOT
|
||||||
|
[09:29:39] [main/INFO] (FabricLoader/Mixin) SpongePowered MIXIN Subsystem Version=0.8.7 Source=file:/C:/Users/toth.gergo_csany-zeg/.gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.16.5+mixin.0.8.7/80fc3a9f592673cea87f4cd702f87991c6c9fe4d/sponge-mixin-0.16.5+mixin.0.8.7.jar Service=Knot/Fabric Env=CLIENT
|
||||||
|
[09:29:39] [main/INFO] (FabricLoader/Mixin) Loaded Fabric development mappings for mixin remapper!
|
||||||
|
[09:29:39] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_16
|
||||||
|
[09:29:39] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_17
|
||||||
|
[09:29:41] [main/INFO] (FabricLoader/MixinExtras|Service) Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.5.0).
|
||||||
|
[09:29:48] [Datafixer Bootstrap/INFO] (Minecraft) 188 Datafixer optimizations took 254 milliseconds
|
||||||
|
[09:29:50] [Render thread/INFO] (Minecraft) [STDERR]: [LWJGL] [ThreadLocalUtil] Unsupported JNI version detected, this may result in a crash. Please inform LWJGL developers.
|
||||||
|
[09:29:50] [Render thread/INFO] (Minecraft) Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
|
||||||
|
[09:29:51] [Render thread/ERROR] (Minecraft) Failed to verify authentication
|
||||||
|
com.mojang.authlib.exceptions.InvalidCredentialsException: Status: 401
|
||||||
|
at com.mojang.authlib.exceptions.MinecraftClientHttpException.toAuthenticationException(MinecraftClientHttpException.java:56) ~[authlib-4.0.43.jar:?]
|
||||||
|
at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:156) ~[authlib-4.0.43.jar:?]
|
||||||
|
at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.<init>(YggdrasilUserApiService.java:55) ~[authlib-4.0.43.jar:?]
|
||||||
|
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.createUserApiService(YggdrasilAuthenticationService.java:124) ~[authlib-4.0.43.jar:?]
|
||||||
|
at net.minecraft.client.MinecraftClient.createUserApiService(MinecraftClient.java:733) ~[minecraft-clientOnly-e572a196b7-1.20.1-net.fabricmc.yarn.1_20_1.1.20.1+build.10-v2.jar:?]
|
||||||
|
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:442) ~[minecraft-clientOnly-e572a196b7-1.20.1-net.fabricmc.yarn.1_20_1.1.20.1+build.10-v2.jar:?]
|
||||||
|
at net.minecraft.client.main.Main.main(Main.java:211) ~[minecraft-clientOnly-e572a196b7-1.20.1-net.fabricmc.yarn.1_20_1.1.20.1+build.10-v2.jar:?]
|
||||||
|
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:514) ~[fabric-loader-0.18.3.jar:?]
|
||||||
|
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:72) ~[fabric-loader-0.18.3.jar:?]
|
||||||
|
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.18.3.jar:?]
|
||||||
|
at net.fabricmc.devlaunchinjector.Main.main(Main.java:86) ~[dev-launch-injector-0.2.1+build.8.jar:?]
|
||||||
|
Caused by: com.mojang.authlib.exceptions.MinecraftClientHttpException: Status: 401
|
||||||
|
at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:85) ~[authlib-4.0.43.jar:?]
|
||||||
|
at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:48) ~[authlib-4.0.43.jar:?]
|
||||||
|
at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:129) ~[authlib-4.0.43.jar:?]
|
||||||
|
... 9 more
|
||||||
|
[09:29:51] [Render thread/INFO] (Minecraft) Setting user: Player30
|
||||||
|
[09:29:51] [Render thread/INFO] (Indigo) [Indigo] Registering Indigo renderer!
|
||||||
|
[09:29:52] [Render thread/INFO] (Minecraft) Backend library: LWJGL version 3.3.2-snapshot
|
||||||
|
[09:29:54] [Render thread/INFO] (Minecraft) Reloading ResourceManager: vanilla, fabric (fabric-networking-v0, fabric-game-rule-api-v1, fabric-rendering-fluids-v1, fabricloader, fabric-item-api-v1, fabric-entity-events-v1, fabric-api-base, fabric-gametest-api-v1, fabric-item-group-api-v1, fabric-key-binding-api-v1, fabric-api-lookup-api-v1, fabric-block-api-v1, fabric-renderer-registries-v1, fabric-lifecycle-events-v1, fabric-events-lifecycle-v0, fabric-registry-sync-v0, fabric-biome-api-v1, fabric-commands-v0, fabric-command-api-v2, fabric-convention-tags-v1, fabric-data-generation-api-v1, fabric-renderer-indigo, fabric-models-v0, fabric-content-registries-v0, fabric-command-api-v1, fabric-rendering-v0, fabric-model-loading-api-v1, fabric-dimensions-v1, fabric-resource-conditions-api-v1, fabric-rendering-v1, fabric-particles-v1, fabric-events-interaction-v0, fabric-block-view-api-v2, fabric-screen-handler-api-v1, fabric-renderer-api-v1, fabric-data-attachment-api-v1, fabric-transfer-api-v1, fabric-object-builder-api-v1, fabric-api, fabric-keybindings-v0, fabric-containers-v0, fabric-message-api-v1, fabric-blockrenderlayer-v1, fabric-client-tags-api-v1, fabric-sound-api-v1, fabric-mining-level-api-v1, fabric-networking-api-v1, fabric-screen-api-v1, fabric-loot-tables-v1, fabric-crash-report-info-v1, fabric-transitive-access-wideners-v1, szar, fabric-recipe-api-v1, fabric-rendering-data-attachment-v1, fabric-loot-api-v2, fabric-resource-loader-v0)
|
||||||
|
[09:29:54] [Worker-Main-1/INFO] (Minecraft) Found unifont_all_no_pua-15.0.06.hex, loading
|
||||||
|
[09:29:54] [Worker-Main-5/WARN] (Minecraft) Texture szar:block/cigany with size 500x500 limits mip level from 4 to 2
|
||||||
|
[09:29:54] [Worker-Main-5/WARN] (Minecraft) minecraft:textures/atlas/blocks.png: dropping miplevel from 4 to 2, because of minimum power of two: 4
|
||||||
|
[09:29:55] [Realms Notification Availability checker #1/INFO] (Minecraft) Could not authorize you against Realms server: java.lang.RuntimeException: Failed to parse into SignedJWT: FabricMC
|
||||||
|
[09:29:56] [Render thread/WARN] (Minecraft) Missing sound for event: minecraft:item.goat_horn.play
|
||||||
|
[09:29:56] [Render thread/WARN] (Minecraft) Missing sound for event: minecraft:entity.goat.screaming.horn_break
|
||||||
|
[09:29:56] [Render thread/INFO] (Minecraft) OpenAL initialized on device OpenAL Soft on LM22-B200S (NVIDIA High Definition Audio)
|
||||||
|
[09:29:56] [Render thread/INFO] (Minecraft) Sound engine started
|
||||||
|
[09:29:56] [Render thread/INFO] (Minecraft) Created: 1024x1024x2 minecraft:textures/atlas/blocks.png-atlas
|
||||||
|
[09:29:56] [Render thread/INFO] (Minecraft) Created: 256x256x4 minecraft:textures/atlas/signs.png-atlas
|
||||||
|
[09:29:56] [Render thread/INFO] (Minecraft) Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas
|
||||||
|
[09:29:56] [Render thread/INFO] (Minecraft) Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas
|
||||||
|
[09:29:56] [Render thread/INFO] (Minecraft) Created: 1024x1024x4 minecraft:textures/atlas/armor_trims.png-atlas
|
||||||
|
[09:29:56] [Render thread/INFO] (Minecraft) Created: 128x64x4 minecraft:textures/atlas/decorated_pot.png-atlas
|
||||||
|
[09:29:56] [Render thread/INFO] (Minecraft) Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas
|
||||||
|
[09:29:56] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas
|
||||||
|
[09:29:56] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas
|
||||||
|
[09:29:56] [Render thread/WARN] (Minecraft) Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program.
|
||||||
|
[09:29:56] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas
|
||||||
|
[09:29:56] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas
|
||||||
|
[09:29:56] [Render thread/INFO] (Minecraft) Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas
|
||||||
|
[09:30:01] [Render thread/INFO] (Minecraft) Loaded 7 recipes
|
||||||
|
[09:30:01] [Render thread/INFO] (Minecraft) Loaded 1271 advancements
|
||||||
|
[09:30:02] [Render thread/INFO] (BiomeModificationImpl) Applied 0 biome modifications to 0 of 64 new biomes in 1.271 ms
|
||||||
|
[09:30:02] [Server thread/INFO] (Minecraft) Starting integrated minecraft server version 1.20.1
|
||||||
|
[09:30:02] [Server thread/INFO] (Minecraft) Generating keypair
|
||||||
|
[09:30:02] [Server thread/INFO] (Minecraft) Preparing start region for dimension minecraft:overworld
|
||||||
|
[09:30:04] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
|
[09:30:04] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
|
[09:30:04] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
|
[09:30:04] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
|
[09:30:04] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
|
[09:30:05] [Render thread/INFO] (Minecraft) Preparing spawn area: 22%
|
||||||
|
[09:30:05] [Render thread/INFO] (Minecraft) Time elapsed: 2885 ms
|
||||||
|
[09:30:05] [Server thread/INFO] (Minecraft) Changing view distance to 12, from 10
|
||||||
|
[09:30:05] [Server thread/INFO] (Minecraft) Changing simulation distance to 12, from 0
|
||||||
|
[09:30:06] [Server thread/INFO] (Minecraft) Player30[local:E:b0e27ee9] logged in with entity id 1 at (2.096043445657163, -59.0, 9.686290888001276)
|
||||||
|
[09:30:06] [Server thread/INFO] (Minecraft) Player30 joined the game
|
||||||
|
[09:30:08] [Render thread/INFO] (Minecraft) Loaded 2 advancements
|
||||||
|
[09:30:15] [Render thread/INFO] (Minecraft) Loaded 5 advancements
|
||||||
|
[09:31:22] [Server thread/INFO] (Minecraft) Saving and pausing game...
|
||||||
|
[09:31:22] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[szar]'/minecraft:overworld
|
||||||
|
[09:31:22] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[szar]'/minecraft:the_nether
|
||||||
|
[09:31:22] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[szar]'/minecraft:the_end
|
||||||
|
[09:31:23] [Server thread/INFO] (Minecraft) Player30 lost connection: Disconnected
|
||||||
|
[09:31:23] [Server thread/INFO] (Minecraft) Player30 left the game
|
||||||
|
[09:31:23] [Server thread/INFO] (Minecraft) Stopping singleplayer server as player logged out
|
||||||
|
[09:31:23] [Server thread/INFO] (Minecraft) Stopping server
|
||||||
|
[09:31:23] [Server thread/INFO] (Minecraft) Saving players
|
||||||
|
[09:31:23] [Server thread/INFO] (Minecraft) Saving worlds
|
||||||
|
[09:31:24] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[szar]'/minecraft:overworld
|
||||||
|
[09:31:24] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[szar]'/minecraft:the_nether
|
||||||
|
[09:31:24] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[szar]'/minecraft:the_end
|
||||||
|
[09:31:24] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (szar): All chunks are saved
|
||||||
|
[09:31:24] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
|
||||||
|
[09:31:24] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM1): All chunks are saved
|
||||||
|
[09:31:24] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage: All dimensions are saved
|
||||||
|
[09:31:25] [Render thread/INFO] (Minecraft) Stopping!
|
||||||
137
run/options.txt
Normal file
137
run/options.txt
Normal file
@@ -0,0 +1,137 @@
|
|||||||
|
version:3465
|
||||||
|
autoJump:false
|
||||||
|
operatorItemsTab:false
|
||||||
|
autoSuggestions:true
|
||||||
|
chatColors:true
|
||||||
|
chatLinks:true
|
||||||
|
chatLinksPrompt:true
|
||||||
|
enableVsync:true
|
||||||
|
entityShadows:true
|
||||||
|
forceUnicodeFont:false
|
||||||
|
discrete_mouse_scroll:false
|
||||||
|
invertYMouse:false
|
||||||
|
realmsNotifications:true
|
||||||
|
reducedDebugInfo:false
|
||||||
|
showSubtitles:false
|
||||||
|
directionalAudio:false
|
||||||
|
touchscreen:false
|
||||||
|
fullscreen:false
|
||||||
|
bobView:true
|
||||||
|
toggleCrouch:false
|
||||||
|
toggleSprint:false
|
||||||
|
darkMojangStudiosBackground:false
|
||||||
|
hideLightningFlashes:false
|
||||||
|
mouseSensitivity:0.5
|
||||||
|
fov:0.0
|
||||||
|
screenEffectScale:1.0
|
||||||
|
fovEffectScale:1.0
|
||||||
|
darknessEffectScale:1.0
|
||||||
|
glintSpeed:0.5
|
||||||
|
glintStrength:0.75
|
||||||
|
damageTiltStrength:1.0
|
||||||
|
highContrast:false
|
||||||
|
gamma:0.5
|
||||||
|
renderDistance:12
|
||||||
|
simulationDistance:12
|
||||||
|
entityDistanceScaling:1.0
|
||||||
|
guiScale:0
|
||||||
|
particles:0
|
||||||
|
maxFps:120
|
||||||
|
graphicsMode:1
|
||||||
|
ao:true
|
||||||
|
prioritizeChunkUpdates:0
|
||||||
|
biomeBlendRadius:2
|
||||||
|
renderClouds:"true"
|
||||||
|
resourcePacks:["fabric"]
|
||||||
|
incompatibleResourcePacks:[]
|
||||||
|
lastServer:
|
||||||
|
lang:en_us
|
||||||
|
soundDevice:""
|
||||||
|
chatVisibility:0
|
||||||
|
chatOpacity:1.0
|
||||||
|
chatLineSpacing:0.0
|
||||||
|
textBackgroundOpacity:0.5
|
||||||
|
backgroundForChatOnly:true
|
||||||
|
hideServerAddress:false
|
||||||
|
advancedItemTooltips:true
|
||||||
|
pauseOnLostFocus:true
|
||||||
|
overrideWidth:0
|
||||||
|
overrideHeight:0
|
||||||
|
chatHeightFocused:1.0
|
||||||
|
chatDelay:0.0
|
||||||
|
chatHeightUnfocused:0.4375
|
||||||
|
chatScale:1.0
|
||||||
|
chatWidth:1.0
|
||||||
|
notificationDisplayTime:1.0
|
||||||
|
mipmapLevels:4
|
||||||
|
useNativeTransport:true
|
||||||
|
mainHand:"right"
|
||||||
|
attackIndicator:1
|
||||||
|
narrator:0
|
||||||
|
tutorialStep:none
|
||||||
|
mouseWheelSensitivity:1.0
|
||||||
|
rawMouseInput:true
|
||||||
|
glDebugVerbosity:1
|
||||||
|
skipMultiplayerWarning:false
|
||||||
|
skipRealms32bitWarning:false
|
||||||
|
hideMatchedNames:true
|
||||||
|
joinedFirstServer:false
|
||||||
|
hideBundleTutorial:false
|
||||||
|
syncChunkWrites:true
|
||||||
|
showAutosaveIndicator:true
|
||||||
|
allowServerListing:true
|
||||||
|
onlyShowSecureChat:false
|
||||||
|
panoramaScrollSpeed:1.0
|
||||||
|
telemetryOptInExtra:false
|
||||||
|
onboardAccessibility:false
|
||||||
|
key_key.attack:key.mouse.left
|
||||||
|
key_key.use:key.mouse.right
|
||||||
|
key_key.forward:key.keyboard.w
|
||||||
|
key_key.left:key.keyboard.a
|
||||||
|
key_key.back:key.keyboard.s
|
||||||
|
key_key.right:key.keyboard.d
|
||||||
|
key_key.jump:key.keyboard.space
|
||||||
|
key_key.sneak:key.keyboard.left.shift
|
||||||
|
key_key.sprint:key.keyboard.left.control
|
||||||
|
key_key.drop:key.keyboard.q
|
||||||
|
key_key.inventory:key.keyboard.e
|
||||||
|
key_key.chat:key.keyboard.t
|
||||||
|
key_key.playerlist:key.keyboard.tab
|
||||||
|
key_key.pickItem:key.mouse.middle
|
||||||
|
key_key.command:key.keyboard.slash
|
||||||
|
key_key.socialInteractions:key.keyboard.p
|
||||||
|
key_key.screenshot:key.keyboard.f2
|
||||||
|
key_key.togglePerspective:key.keyboard.f5
|
||||||
|
key_key.smoothCamera:key.keyboard.unknown
|
||||||
|
key_key.fullscreen:key.keyboard.f11
|
||||||
|
key_key.spectatorOutlines:key.keyboard.unknown
|
||||||
|
key_key.swapOffhand:key.keyboard.f
|
||||||
|
key_key.saveToolbarActivator:key.keyboard.c
|
||||||
|
key_key.loadToolbarActivator:key.keyboard.x
|
||||||
|
key_key.advancements:key.keyboard.l
|
||||||
|
key_key.hotbar.1:key.keyboard.1
|
||||||
|
key_key.hotbar.2:key.keyboard.2
|
||||||
|
key_key.hotbar.3:key.keyboard.3
|
||||||
|
key_key.hotbar.4:key.keyboard.4
|
||||||
|
key_key.hotbar.5:key.keyboard.5
|
||||||
|
key_key.hotbar.6:key.keyboard.6
|
||||||
|
key_key.hotbar.7:key.keyboard.7
|
||||||
|
key_key.hotbar.8:key.keyboard.8
|
||||||
|
key_key.hotbar.9:key.keyboard.9
|
||||||
|
soundCategory_master:1.0
|
||||||
|
soundCategory_music:1.0
|
||||||
|
soundCategory_record:1.0
|
||||||
|
soundCategory_weather:1.0
|
||||||
|
soundCategory_block:1.0
|
||||||
|
soundCategory_hostile:1.0
|
||||||
|
soundCategory_neutral:1.0
|
||||||
|
soundCategory_player:1.0
|
||||||
|
soundCategory_ambient:1.0
|
||||||
|
soundCategory_voice:1.0
|
||||||
|
modelPart_cape:true
|
||||||
|
modelPart_jacket:true
|
||||||
|
modelPart_left_sleeve:true
|
||||||
|
modelPart_right_sleeve:true
|
||||||
|
modelPart_left_pants_leg:true
|
||||||
|
modelPart_right_pants_leg:true
|
||||||
|
modelPart_hat:true
|
||||||
BIN
run/saves/szar/DIM-1/data/raids.dat
Normal file
BIN
run/saves/szar/DIM-1/data/raids.dat
Normal file
Binary file not shown.
BIN
run/saves/szar/DIM1/data/raids_end.dat
Normal file
BIN
run/saves/szar/DIM1/data/raids_end.dat
Normal file
Binary file not shown.
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/decorations/crafting_table": {
|
||||||
|
"criteria": {
|
||||||
|
"unlock_right_away": "2025-12-17 08:40:49 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:plains": "2025-12-17 08:40:50 +0100"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"DataVersion": 3465
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/decorations/crafting_table": {
|
||||||
|
"criteria": {
|
||||||
|
"unlock_right_away": "2025-12-17 08:55:39 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:plains": "2025-12-17 08:55:40 +0100"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"DataVersion": 3465
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/decorations/crafting_table": {
|
||||||
|
"criteria": {
|
||||||
|
"unlock_right_away": "2025-12-17 08:42:31 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:plains": "2025-12-17 08:42:32 +0100"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"DataVersion": 3465
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/decorations/crafting_table": {
|
||||||
|
"criteria": {
|
||||||
|
"unlock_right_away": "2025-12-17 08:54:33 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:plains": "2025-12-17 08:54:33 +0100"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"DataVersion": 3465
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/decorations/crafting_table": {
|
||||||
|
"criteria": {
|
||||||
|
"unlock_right_away": "2025-12-17 09:19:14 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:plains": "2025-12-17 09:19:14 +0100"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"DataVersion": 3465
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/decorations/crafting_table": {
|
||||||
|
"criteria": {
|
||||||
|
"unlock_right_away": "2025-12-17 09:20:46 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:plains": "2025-12-17 09:20:46 +0100"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"DataVersion": 3465
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/decorations/crafting_table": {
|
||||||
|
"criteria": {
|
||||||
|
"unlock_right_away": "2025-12-17 08:57:34 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:plains": "2025-12-17 08:57:35 +0100"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"DataVersion": 3465
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/decorations/crafting_table": {
|
||||||
|
"criteria": {
|
||||||
|
"unlock_right_away": "2025-12-17 09:23:06 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:plains": "2025-12-17 09:23:07 +0100"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"DataVersion": 3465
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/decorations/crafting_table": {
|
||||||
|
"criteria": {
|
||||||
|
"unlock_right_away": "2025-12-17 08:47:56 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:plains": "2025-12-17 08:47:56 +0100"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"DataVersion": 3465
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/decorations/crafting_table": {
|
||||||
|
"criteria": {
|
||||||
|
"unlock_right_away": "2025-12-17 09:07:42 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:plains": "2025-12-17 09:07:43 +0100"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"DataVersion": 3465
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/decorations/crafting_table": {
|
||||||
|
"criteria": {
|
||||||
|
"unlock_right_away": "2025-12-17 08:59:35 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:plains": "2025-12-17 08:59:36 +0100"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"DataVersion": 3465
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/decorations/crafting_table": {
|
||||||
|
"criteria": {
|
||||||
|
"unlock_right_away": "2025-12-17 08:37:31 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:plains": "2025-12-17 08:37:31 +0100"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"DataVersion": 3465
|
||||||
|
}
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/food/cooked_beef_from_smoking": {
|
||||||
|
"criteria": {
|
||||||
|
"has_beef": "2025-12-17 09:30:15 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:recipes/decorations/crafting_table": {
|
||||||
|
"criteria": {
|
||||||
|
"unlock_right_away": "2025-12-17 09:30:06 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:plains": "2025-12-17 09:30:07 +0100"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"minecraft:recipes/food/cooked_beef": {
|
||||||
|
"criteria": {
|
||||||
|
"has_beef": "2025-12-17 09:30:15 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:recipes/food/cooked_beef_from_campfire_cooking": {
|
||||||
|
"criteria": {
|
||||||
|
"has_beef": "2025-12-17 09:30:15 +0100"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"DataVersion": 3465
|
||||||
|
}
|
||||||
BIN
run/saves/szar/data/raids.dat
Normal file
BIN
run/saves/szar/data/raids.dat
Normal file
Binary file not shown.
0
run/saves/szar/entities/r.-1.-1.mca
Normal file
0
run/saves/szar/entities/r.-1.-1.mca
Normal file
0
run/saves/szar/entities/r.-1.0.mca
Normal file
0
run/saves/szar/entities/r.-1.0.mca
Normal file
0
run/saves/szar/entities/r.0.-1.mca
Normal file
0
run/saves/szar/entities/r.0.-1.mca
Normal file
0
run/saves/szar/entities/r.0.0.mca
Normal file
0
run/saves/szar/entities/r.0.0.mca
Normal file
BIN
run/saves/szar/icon.png
Normal file
BIN
run/saves/szar/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.7 KiB |
BIN
run/saves/szar/level.dat
Normal file
BIN
run/saves/szar/level.dat
Normal file
Binary file not shown.
BIN
run/saves/szar/level.dat_old
Normal file
BIN
run/saves/szar/level.dat_old
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0
run/saves/szar/poi/r.-1.-1.mca
Normal file
0
run/saves/szar/poi/r.-1.-1.mca
Normal file
0
run/saves/szar/poi/r.-1.0.mca
Normal file
0
run/saves/szar/poi/r.-1.0.mca
Normal file
0
run/saves/szar/poi/r.0.-1.mca
Normal file
0
run/saves/szar/poi/r.0.-1.mca
Normal file
0
run/saves/szar/poi/r.0.0.mca
Normal file
0
run/saves/szar/poi/r.0.0.mca
Normal file
BIN
run/saves/szar/region/r.-1.-1.mca
Normal file
BIN
run/saves/szar/region/r.-1.-1.mca
Normal file
Binary file not shown.
BIN
run/saves/szar/region/r.-1.0.mca
Normal file
BIN
run/saves/szar/region/r.-1.0.mca
Normal file
Binary file not shown.
BIN
run/saves/szar/region/r.0.-1.mca
Normal file
BIN
run/saves/szar/region/r.0.-1.mca
Normal file
Binary file not shown.
BIN
run/saves/szar/region/r.0.0.mca
Normal file
BIN
run/saves/szar/region/r.0.0.mca
Normal file
Binary file not shown.
1
run/saves/szar/session.lock
Normal file
1
run/saves/szar/session.lock
Normal file
@@ -0,0 +1 @@
|
|||||||
|
☃
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:used":{"szar:cigany":1},"minecraft:custom":{"minecraft:jump":3,"minecraft:time_since_rest":350,"minecraft:play_time":350,"minecraft:time_since_death":350,"minecraft:walk_one_cm":909,"minecraft:total_world_time":449}},"DataVersion":3465}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:custom":{"minecraft:jump":1,"minecraft:time_since_rest":643,"minecraft:play_time":643,"minecraft:time_since_death":643,"minecraft:walk_one_cm":2957,"minecraft:total_world_time":652},"minecraft:used":{"szar:fasz":2}},"DataVersion":3465}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:picked_up":{"szar:cigany":1},"minecraft:dropped":{"szar:cigany":1},"minecraft:custom":{"minecraft:jump":2,"minecraft:time_since_rest":431,"minecraft:crouch_one_cm":176,"minecraft:play_time":431,"minecraft:time_since_death":431,"minecraft:walk_one_cm":1499,"minecraft:sneak_time":66,"minecraft:total_world_time":1350,"minecraft:drop":1}},"DataVersion":3465}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:used":{"szar:fasz":1},"minecraft:custom":{"minecraft:jump":1,"minecraft:time_since_rest":319,"minecraft:play_time":319,"minecraft:time_since_death":319,"minecraft:walk_one_cm":1229,"minecraft:total_world_time":328}},"DataVersion":3465}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:custom":{"minecraft:time_since_rest":293,"minecraft:play_time":293,"minecraft:time_since_death":293,"minecraft:total_world_time":302}},"DataVersion":3465}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:custom":{"minecraft:time_since_rest":453,"minecraft:play_time":453,"minecraft:time_since_death":453,"minecraft:total_world_time":462}},"DataVersion":3465}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:used":{"szar:fasz":1},"minecraft:custom":{"minecraft:jump":10,"minecraft:time_since_rest":467,"minecraft:crouch_one_cm":3,"minecraft:play_time":467,"minecraft:time_since_death":467,"minecraft:walk_one_cm":2108,"minecraft:sneak_time":11,"minecraft:total_world_time":474}},"DataVersion":3465}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:used":{"szar:fasz":2},"minecraft:custom":{"minecraft:jump":8,"minecraft:time_since_rest":1306,"minecraft:crouch_one_cm":5,"minecraft:sprint_one_cm":1790,"minecraft:play_time":1306,"minecraft:time_since_death":1306,"minecraft:walk_one_cm":2725,"minecraft:sneak_time":9,"minecraft:total_world_time":1345,"minecraft:fly_one_cm":1223}},"DataVersion":3465}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:custom":{"minecraft:jump":7,"minecraft:time_since_rest":1684,"minecraft:crouch_one_cm":259,"minecraft:sprint_one_cm":267,"minecraft:leave_game":1,"minecraft:play_time":1684,"minecraft:time_since_death":1684,"minecraft:walk_one_cm":1803,"minecraft:sneak_time":44,"minecraft:total_world_time":1715,"minecraft:fall_one_cm":209,"minecraft:drop":1,"minecraft:fly_one_cm":676},"minecraft:dropped":{"szar:cigany":1},"minecraft:picked_up":{"szar:cigany":1},"minecraft:used":{"szar:fasz":2,"szar:cigany":1}},"DataVersion":3465}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:custom":{"minecraft:time_since_rest":554,"minecraft:leave_game":1,"minecraft:play_time":554,"minecraft:time_since_death":554,"minecraft:walk_one_cm":1245,"minecraft:total_world_time":630}},"DataVersion":3465}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:custom":{"minecraft:jump":9,"minecraft:time_since_rest":1322,"minecraft:crouch_one_cm":41,"minecraft:sprint_one_cm":158,"minecraft:play_time":1322,"minecraft:time_since_death":1322,"minecraft:walk_one_cm":2093,"minecraft:sneak_time":13,"minecraft:total_world_time":1330,"minecraft:fly_one_cm":331}},"DataVersion":3465}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:used":{"szar:szar_block":1},"minecraft:custom":{"minecraft:jump":1,"minecraft:time_since_rest":279,"minecraft:crouch_one_cm":21,"minecraft:play_time":279,"minecraft:time_since_death":279,"minecraft:walk_one_cm":607,"minecraft:sneak_time":15,"minecraft:total_world_time":286}},"DataVersion":3465}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:crafted":{"szar:fasz":1},"minecraft:custom":{"minecraft:jump":5,"minecraft:time_since_rest":1516,"minecraft:crouch_one_cm":93,"minecraft:leave_game":1,"minecraft:sprint_one_cm":373,"minecraft:play_time":1516,"minecraft:time_since_death":1516,"minecraft:walk_one_cm":497,"minecraft:sneak_time":15,"minecraft:total_world_time":1537,"minecraft:interact_with_crafting_table":2,"minecraft:fly_one_cm":812}},"DataVersion":3465}
|
||||||
1
run/usercache.json
Normal file
1
run/usercache.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
[{"name":"Player30","uuid":"e6ce70cd-b7cc-34be-b059-93e41d35480c","expiresOn":"2026-01-17 09:30:06 +0100"},{"name":"Player714","uuid":"0cad2f47-2665-3067-89f3-6434c639de1f","expiresOn":"2026-01-17 09:25:04 +0100"},{"name":"Player561","uuid":"a87d2476-ff88-3799-a681-9605d7180f4f","expiresOn":"2026-01-17 09:23:05 +0100"},{"name":"Player60","uuid":"53335878-3f56-39c8-893b-77b74c9ca2e1","expiresOn":"2026-01-17 09:20:45 +0100"},{"name":"Player594","uuid":"50441446-173a-3648-92c5-519e7eb2f5c1","expiresOn":"2026-01-17 09:19:13 +0100"},{"name":"Player587","uuid":"aa0974cf-bafe-3f00-bd4a-65b146355415","expiresOn":"2026-01-17 09:08:49 +0100"},{"name":"Player186","uuid":"abf9489f-335c-323d-bf8c-6e98800dc4a3","expiresOn":"2026-01-17 09:07:42 +0100"},{"name":"Player191","uuid":"ac47fd32-de83-3641-a759-130889823db1","expiresOn":"2026-01-17 08:59:35 +0100"},{"name":"Player510","uuid":"56194db1-2459-3533-bada-8561030dd064","expiresOn":"2026-01-17 08:57:34 +0100"},{"name":"Player304","uuid":"2b98548a-5e09-3029-b082-b4c99d31d926","expiresOn":"2026-01-17 08:55:39 +0100"},{"name":"Player388","uuid":"5031b283-213a-3769-9d06-07f0ca40feb8","expiresOn":"2026-01-17 08:54:32 +0100"},{"name":"Player757","uuid":"3b73482c-4090-3c74-a2d4-17e9934c9bd9","expiresOn":"2026-01-17 08:42:31 +0100"},{"name":"Player108","uuid":"27630cc8-9d92-34f7-8c10-85caa979d8b3","expiresOn":"2026-01-17 08:40:49 +0100"},{"name":"Player533","uuid":"b24e58a9-7e4c-3f19-91fc-3074c8cfe34b","expiresOn":"2026-01-17 08:37:31 +0100"}]
|
||||||
9
settings.gradle
Normal file
9
settings.gradle
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
name = 'Fabric'
|
||||||
|
url = 'https://maven.fabricmc.net/'
|
||||||
|
}
|
||||||
|
gradlePluginPortal()
|
||||||
|
}
|
||||||
|
}
|
||||||
10
src/client/java/dev/tggamesyt/szar/client/SzarClient.java
Normal file
10
src/client/java/dev/tggamesyt/szar/client/SzarClient.java
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
package dev.tggamesyt.szar.client;
|
||||||
|
|
||||||
|
import net.fabricmc.api.ClientModInitializer;
|
||||||
|
|
||||||
|
public class SzarClient implements ClientModInitializer {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onInitializeClient() {
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
package dev.tggamesyt.szar.client;
|
||||||
|
|
||||||
|
import net.fabricmc.fabric.api.datagen.v1.DataGeneratorEntrypoint;
|
||||||
|
import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator;
|
||||||
|
|
||||||
|
public class SzarDataGenerator implements DataGeneratorEntrypoint {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onInitializeDataGenerator(FabricDataGenerator fabricDataGenerator) {
|
||||||
|
FabricDataGenerator.Pack pack = fabricDataGenerator.createPack();
|
||||||
|
}
|
||||||
|
}
|
||||||
14
src/client/resources/szar.client.mixins.json
Normal file
14
src/client/resources/szar.client.mixins.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"required": true,
|
||||||
|
"minVersion": "0.8",
|
||||||
|
"package": "dev.tggamesyt.szar.mixin.client",
|
||||||
|
"compatibilityLevel": "JAVA_17",
|
||||||
|
"client": [
|
||||||
|
],
|
||||||
|
"injectors": {
|
||||||
|
"defaultRequire": 1
|
||||||
|
},
|
||||||
|
"overwrites": {
|
||||||
|
"requireAnnotations": true
|
||||||
|
}
|
||||||
|
}
|
||||||
71
src/main/java/dev/tggamesyt/szar/FaszBlock.java
Normal file
71
src/main/java/dev/tggamesyt/szar/FaszBlock.java
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
package dev.tggamesyt.szar;
|
||||||
|
|
||||||
|
import net.minecraft.block.Block;
|
||||||
|
import net.minecraft.block.BlockState;
|
||||||
|
import net.minecraft.block.Blocks;
|
||||||
|
import net.minecraft.block.ShapeContext;
|
||||||
|
import net.minecraft.entity.player.PlayerEntity;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
import net.minecraft.particle.BlockStateParticleEffect;
|
||||||
|
import net.minecraft.particle.ParticleTypes;
|
||||||
|
import net.minecraft.server.world.ServerWorld;
|
||||||
|
import net.minecraft.util.Hand;
|
||||||
|
import net.minecraft.util.TypedActionResult;
|
||||||
|
import net.minecraft.util.math.BlockPos;
|
||||||
|
import net.minecraft.util.shape.VoxelShape;
|
||||||
|
import net.minecraft.util.shape.VoxelShapes;
|
||||||
|
import net.minecraft.world.BlockView;
|
||||||
|
import net.minecraft.world.World;
|
||||||
|
|
||||||
|
public class FaszBlock extends Block {
|
||||||
|
|
||||||
|
public FaszBlock() {
|
||||||
|
super(Settings.copy(Blocks.STONE));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static final VoxelShape SHAPE_1 = Block.createCuboidShape(
|
||||||
|
6, 0, 2,
|
||||||
|
10, 4, 6
|
||||||
|
);
|
||||||
|
|
||||||
|
// Element 2: from [6, 0, 10] to [10, 4, 14]
|
||||||
|
private static final VoxelShape SHAPE_2 = Block.createCuboidShape(
|
||||||
|
6, 0, 10,
|
||||||
|
10, 4, 14
|
||||||
|
);
|
||||||
|
|
||||||
|
// Element 3: from [6, 4, 6] to [10, 32, 10]
|
||||||
|
private static final VoxelShape SHAPE_3 = Block.createCuboidShape(
|
||||||
|
6, 4, 6,
|
||||||
|
10, 32, 10
|
||||||
|
);
|
||||||
|
|
||||||
|
// Combine all shapes
|
||||||
|
private static final VoxelShape SHAPE = VoxelShapes.union(
|
||||||
|
SHAPE_1,
|
||||||
|
SHAPE_2,
|
||||||
|
SHAPE_3
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public VoxelShape getOutlineShape(
|
||||||
|
BlockState state,
|
||||||
|
BlockView world,
|
||||||
|
BlockPos pos,
|
||||||
|
ShapeContext context
|
||||||
|
) {
|
||||||
|
return SHAPE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public VoxelShape getCollisionShape(
|
||||||
|
BlockState state,
|
||||||
|
BlockView world,
|
||||||
|
BlockPos pos,
|
||||||
|
ShapeContext context
|
||||||
|
) {
|
||||||
|
// behave like vanilla: collision follows outline
|
||||||
|
return SHAPE;
|
||||||
|
}
|
||||||
|
}
|
||||||
48
src/main/java/dev/tggamesyt/szar/FaszItem.java
Normal file
48
src/main/java/dev/tggamesyt/szar/FaszItem.java
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
package dev.tggamesyt.szar;
|
||||||
|
|
||||||
|
import net.minecraft.block.Block;
|
||||||
|
import net.minecraft.block.Blocks;
|
||||||
|
import net.minecraft.entity.player.PlayerEntity;
|
||||||
|
import net.minecraft.item.BlockItem;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
import net.minecraft.particle.BlockStateParticleEffect;
|
||||||
|
import net.minecraft.particle.ParticleTypes;
|
||||||
|
import net.minecraft.server.world.ServerWorld;
|
||||||
|
import net.minecraft.util.Hand;
|
||||||
|
import net.minecraft.util.TypedActionResult;
|
||||||
|
import net.minecraft.world.World;
|
||||||
|
|
||||||
|
public class FaszItem extends BlockItem {
|
||||||
|
|
||||||
|
public FaszItem(Block block, Settings settings) {
|
||||||
|
super(block, settings);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TypedActionResult<ItemStack> use(World world, PlayerEntity user, Hand hand) {
|
||||||
|
ItemStack stack = user.getStackInHand(hand);
|
||||||
|
|
||||||
|
if (!world.isClient && stack.isOf(this)) {
|
||||||
|
ServerWorld serverWorld = (ServerWorld) world;
|
||||||
|
|
||||||
|
// Get the direction the player's torso is looking
|
||||||
|
var lookVec = user.getRotationVec(1.0F); // normalized direction vector
|
||||||
|
|
||||||
|
// Calculate the particle spawn position 2 blocks ahead
|
||||||
|
double px = user.getX() + lookVec.x * 2;
|
||||||
|
double py = user.getBodyY(0.5); // torso height
|
||||||
|
double pz = user.getZ() + lookVec.z * 2;
|
||||||
|
|
||||||
|
// Spawn block particles
|
||||||
|
serverWorld.spawnParticles(
|
||||||
|
new BlockStateParticleEffect(ParticleTypes.BLOCK, Szar.FASZ_BLOCK.getDefaultState()),
|
||||||
|
px, py, pz, // position
|
||||||
|
20, // particle count
|
||||||
|
0.3, 0.3, 0.3, // spread in x/y/z
|
||||||
|
0.05 // velocity
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return TypedActionResult.pass(stack);
|
||||||
|
}
|
||||||
|
}
|
||||||
51
src/main/java/dev/tggamesyt/szar/Szar.java
Normal file
51
src/main/java/dev/tggamesyt/szar/Szar.java
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
package dev.tggamesyt.szar;
|
||||||
|
|
||||||
|
import net.fabricmc.api.ModInitializer;
|
||||||
|
import net.minecraft.block.Block;
|
||||||
|
import net.minecraft.block.Blocks;
|
||||||
|
import net.minecraft.item.BlockItem;
|
||||||
|
import net.minecraft.item.Item;
|
||||||
|
import net.minecraft.registry.Registries;
|
||||||
|
import net.minecraft.registry.Registry;
|
||||||
|
import net.minecraft.util.Identifier;
|
||||||
|
|
||||||
|
public class Szar implements ModInitializer {
|
||||||
|
|
||||||
|
public static final String MOD_ID = "szar";
|
||||||
|
|
||||||
|
public static final Block SZAR_BLOCK =
|
||||||
|
new SzarBlock();
|
||||||
|
public static final Block FASZ_BLOCK =
|
||||||
|
new FaszBlock();
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onInitialize() {
|
||||||
|
|
||||||
|
// register block
|
||||||
|
Registry.register(
|
||||||
|
Registries.BLOCK,
|
||||||
|
new Identifier(MOD_ID, "cigany"),
|
||||||
|
SZAR_BLOCK
|
||||||
|
);
|
||||||
|
|
||||||
|
// register item so you can hold it
|
||||||
|
Registry.register(
|
||||||
|
Registries.ITEM,
|
||||||
|
new Identifier(MOD_ID, "cigany"),
|
||||||
|
new BlockItem(SZAR_BLOCK, new Item.Settings())
|
||||||
|
);
|
||||||
|
|
||||||
|
Registry.register(
|
||||||
|
Registries.BLOCK,
|
||||||
|
new Identifier(MOD_ID, "fasz"),
|
||||||
|
FASZ_BLOCK
|
||||||
|
);
|
||||||
|
|
||||||
|
// register item so you can hold it
|
||||||
|
Registry.register(
|
||||||
|
Registries.ITEM,
|
||||||
|
new Identifier(MOD_ID, "fasz"),
|
||||||
|
new FaszItem(FASZ_BLOCK, new Item.Settings())
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
11
src/main/java/dev/tggamesyt/szar/SzarBlock.java
Normal file
11
src/main/java/dev/tggamesyt/szar/SzarBlock.java
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
package dev.tggamesyt.szar;
|
||||||
|
|
||||||
|
import net.minecraft.block.Block;
|
||||||
|
import net.minecraft.block.Blocks;
|
||||||
|
|
||||||
|
public class SzarBlock extends Block {
|
||||||
|
|
||||||
|
public SzarBlock() {
|
||||||
|
super(Settings.copy(Blocks.STONE));
|
||||||
|
}
|
||||||
|
}
|
||||||
7
src/main/resources/assets/szar/blockstates/cigany.json
Normal file
7
src/main/resources/assets/szar/blockstates/cigany.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "szar:block/cigany"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
src/main/resources/assets/szar/blockstates/fasz.json
Normal file
7
src/main/resources/assets/szar/blockstates/fasz.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "szar:block/fasz"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
src/main/resources/assets/szar/icon.png
Normal file
BIN
src/main/resources/assets/szar/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 237 KiB |
4
src/main/resources/assets/szar/lang/en_us.json
Normal file
4
src/main/resources/assets/szar/lang/en_us.json
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"block.szar.cigany": "Cigány Block",
|
||||||
|
"block.szar.fasz": "Fasz"
|
||||||
|
}
|
||||||
6
src/main/resources/assets/szar/models/block/cigany.json
Normal file
6
src/main/resources/assets/szar/models/block/cigany.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"parent": "minecraft:block/cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "szar:block/cigany"
|
||||||
|
}
|
||||||
|
}
|
||||||
57
src/main/resources/assets/szar/models/block/fasz.json
Normal file
57
src/main/resources/assets/szar/models/block/fasz.json
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
{
|
||||||
|
"format_version": "1.9.0",
|
||||||
|
"credit": "Made with Blockbench",
|
||||||
|
"texture_size": [32, 32],
|
||||||
|
"textures": {
|
||||||
|
"0": "szar:block/fasz",
|
||||||
|
"particle": "szar:block/white"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"from": [6, 0, 2],
|
||||||
|
"to": [10, 4, 6],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [6, 0, 2]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [8, 0, 10, 2], "texture": "#0"},
|
||||||
|
"east": {"uv": [8, 2, 10, 4], "texture": "#0"},
|
||||||
|
"south": {"uv": [8, 4, 10, 6], "texture": "#0"},
|
||||||
|
"west": {"uv": [8, 6, 10, 8], "texture": "#0"},
|
||||||
|
"up": {"uv": [10, 10, 8, 8], "texture": "#0"},
|
||||||
|
"down": {"uv": [12, 0, 10, 2], "texture": "#0"}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"from": [6, 0, 10],
|
||||||
|
"to": [10, 4, 14],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [6, 0, 10]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [10, 2, 12, 4], "texture": "#0"},
|
||||||
|
"east": {"uv": [10, 4, 12, 6], "texture": "#0"},
|
||||||
|
"south": {"uv": [10, 6, 12, 8], "texture": "#0"},
|
||||||
|
"west": {"uv": [8, 10, 10, 12], "texture": "#0"},
|
||||||
|
"up": {"uv": [12, 10, 10, 8], "texture": "#0"},
|
||||||
|
"down": {"uv": [12, 10, 10, 12], "texture": "#0"}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"from": [6, 4, 6],
|
||||||
|
"to": [10, 32, 10],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 6]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 2, 14], "texture": "#0"},
|
||||||
|
"east": {"uv": [2, 0, 4, 14], "texture": "#0"},
|
||||||
|
"south": {"uv": [4, 0, 6, 14], "texture": "#0"},
|
||||||
|
"west": {"uv": [6, 0, 8, 14], "texture": "#0"},
|
||||||
|
"up": {"uv": [14, 2, 12, 0], "texture": "#0"},
|
||||||
|
"down": {"uv": [14, 2, 12, 4], "texture": "#0"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"display": {
|
||||||
|
"thirdperson_righthand": {
|
||||||
|
"rotation": [79.94, -84.91, 76.47],
|
||||||
|
"translation": [-6.75, 6.75, 1.5],
|
||||||
|
"scale": [1, 1.43164, 1]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
3
src/main/resources/assets/szar/models/item/cigany.json
Normal file
3
src/main/resources/assets/szar/models/item/cigany.json
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"parent": "szar:block/cigany"
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user