mcvm 0.25.0

A fast, extensible, and powerful Minecraft launcher
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@meta {
	name "Natural Textures Support";
	description "Installs mods to ensure support for natural textures in resource packs";
	authors "mcvm";
}

@install {
	# Natural textures are now supported in newer versions of Minecraft
	if version "1.8+" {
		finish;
	}

	if modloader forgelike {
		require "optifine-support";
	}
	fail unsupported_modloader;
}