-
Notifications
You must be signed in to change notification settings - Fork 0
Minecraft 26.2 Guide
| Parameter | Specification |
|---|---|
| Target Minecraft Version |
26.2 (and forward-compatible 26.x) |
| Fabric Loader Constraint | >=0.18.4 |
| Java Environment | JDK 25 |
| Library Version | 1.8.15 |
| Mod ID | dasik-library |
| Mod Name | Dasik Library |
| License | LGPL-3.0 |
๐ Repository Source Disclaimer: The documentation in this Wiki reflects the current source code state in the repository, which may include recent unreleased commits or developmental features ahead of public release builds on CurseForge and Modrinth.
Dasik Library is an essential runtime dependency for mods in the Vanilla Outsider, Instant Gratification, and Delayed Gratification collections. It delivers central social AI tick scheduling, animal genetics, Boids vector steering math, and dynamic GameRule registration.
- Install Fabric Loader (
0.18.4or higher) for Minecraft26.2. - Ensure Fabric API (
0.152.1+26.2or higher) is installed in your.minecraft/modsfolder. - Download
dasik-library-1.8.15.jarand place it into your.minecraft/modsdirectory alongside dependent consumer mods (e.g. Better Dogs, Natural Reproduction).
Add Dasik Library to your fabric.mod.json:
{
"schemaVersion": 1,
"id": "my_consumer_mod",
"version": "1.0.0+26.2",
"name": "My Consumer Mod",
"depends": {
"fabricloader": ">=0.18.4",
"minecraft": ">=26.1.2-",
"dasik-library": "*"
}
}In gradle.properties:
dasik_library_version=1.8.15In build.gradle:
dependencies {
modImplementation "net.dasik.social:dasik-library:${project.dasik_library_version}"
}-
Mojang Sovereign Mappings: Uses Mojang mappings (
level,ServerLevel,EntityTypes). Yarn-mapped methods (world,getWorld) are strictly obsolete. -
Identifier API: Uses
Identifier.fromNamespaceAndPath(namespace, path)orIdentifier.parse(string)for resource locations. LegacyIdentifier.of()is unsupported. -
Open-Ended Bounds (
>=26.1.2-): Ensures a single build JAR remains forward-compatible across Minecraft26.2+drops while usingModVersionGuardfor runtime safety.
Dasik Library | Social AI & Infrastructure Engine
Developed with โค๏ธ by Dasik (Rifaditya) | Licensed under LGPL-3.0
๐ Documentation reflects active repository source code state.
- Hive Mind Social System
- Social Scheduler & Events
- Animal Genetics Engine
- Genetics API & Pedigree
- Genetics Loot Modifiers
- Leader Follower & Flocking
- Dynamic GameRules Manager
- GameRule Codec & Serialization
- Client GameRule & GUI Helpers
- Dynamic Enchantments & Vision
- Stochastic & Math Utilities
- Stale Attribute Purging & Scale
- ModVersionGuard & Startup Safety
- Developer Setup & Building
- Architecture & Package Layout
- Mixin Reference & Hooks
- Behavior Profiles & Conditions
- Consumer Mods Integration Guide