- Update Minecraft version from 1.21.10 to 26.1.1 and Fabric from 0.18.4 to 0.19.3 - Replace reinforced chests with iron chest with fabric support - Remove carry on, villager pickup, quartz elevator, easy install, and measurements due to incompatibility or redundancy - Replace REI with NEI due to compatibility issues with tom's storage - Update installation instructions and repository URL from m2110 to m2612 - Remove Architectury API and Cloth Config API as they are no longer required - Update mod descriptions and legend to reflect changes in modpack composition
14 lines
513 B
Bash
Executable File
14 lines
513 B
Bash
Executable File
#!/bin/bash
|
||
#
|
||
# Downloading mods to local folder
|
||
# @see https://juraj-hrivnak.github.io/Pakku/pakku-fetch.html
|
||
# Следует использовать после команды sync, которая синхронизирует локальные моды с регистром pakku
|
||
#
|
||
|
||
set -eu pipefail
|
||
pakku() { pakku-mc "$@"; }
|
||
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd)
|
||
REPO_ROOT="${SCRIPT_DIR}/.."
|
||
cd "${REPO_ROOT}" || exit 1
|
||
|
||
pakku fetch --shelve && mv .pakku/shelf/* mods/ |