Skip to content

Commit 5eeb2b9

Browse files
committed
fixed ai
0 parents  commit 5eeb2b9

19 files changed

+2491
-0
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Disable autocrlf on generated files, they always generate with LF
2+
# Add any extra files or paths here to make git stop saying they
3+
# are changed when only line endings change.
4+
src/generated/**/.cache/cache text eol=lf
5+
src/generated/**/*.json text eol=lf

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# eclipse
2+
bin
3+
*.launch
4+
.settings
5+
.metadata
6+
.classpath
7+
.project
8+
9+
# idea
10+
out
11+
*.ipr
12+
*.iws
13+
*.iml
14+
.idea
15+
16+
# gradle
17+
build
18+
.gradle
19+
20+
# other
21+
eclipse
22+
run
23+
24+
# Files from Forge MDK
25+
forge*changelog.txt

CREDITS.txt

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
Minecraft Forge: Credits/Thank You
2+
3+
Forge is a set of tools and modifications to the Minecraft base game code to assist
4+
mod developers in creating new and exciting content. It has been in development for
5+
several years now, but I would like to take this time thank a few people who have
6+
helped it along it's way.
7+
8+
First, the people who originally created the Forge projects way back in Minecraft
9+
alpha. Eloraam of RedPower, and SpaceToad of Buildcraft, without their acceptiance
10+
of me taking over the project, who knows what Minecraft modding would be today.
11+
12+
Secondly, someone who has worked with me, and developed some of the core features
13+
that allow modding to be as functional, and as simple as it is, cpw. For developing
14+
FML, which stabelized the client and server modding ecosystem. As well as the base
15+
loading system that allows us to modify Minecraft's code as elegently as possible.
16+
17+
Mezz, who has stepped up as the issue and pull request manager. Helping to keep me
18+
sane as well as guiding the community into creating better additions to Forge.
19+
20+
Searge, Bspks, Fesh0r, ProfMobious, and all the rest over on the MCP team {of which
21+
I am a part}. For creating some of the core tools needed to make Minecraft modding
22+
both possible, and as stable as can be.
23+
On that note, here is some specific information of the MCP data we use:
24+
* Minecraft Coder Pack (MCP) *
25+
Forge Mod Loader and Minecraft Forge have permission to distribute and automatically
26+
download components of MCP and distribute MCP data files. This permission is not
27+
transitive and others wishing to redistribute the Minecraft Forge source independently
28+
should seek permission of MCP or remove the MCP data files and request their users
29+
to download MCP separately.
30+
31+
And lastly, the countless community members who have spent time submitting bug reports,
32+
pull requests, and just helping out the community in general. Thank you.
33+
34+
--LexManos
35+
36+
=========================================================================
37+
38+
This is Forge Mod Loader.
39+
40+
You can find the source code at all times at https://github.com/MinecraftForge/MinecraftForge/tree/1.12.x/src/main/java/net/minecraftforge/fml
41+
42+
This minecraft mod is a clean open source implementation of a mod loader for minecraft servers
43+
and minecraft clients.
44+
45+
The code is authored by cpw.
46+
47+
It began by partially implementing an API defined by the client side ModLoader, authored by Risugami.
48+
http://www.minecraftforum.net/topic/75440-
49+
This support has been dropped as of Minecraft release 1.7, as Risugami no longer maintains ModLoader.
50+
51+
It also contains suggestions and hints and generous helpings of code from LexManos, author of MinecraftForge.
52+
http://www.minecraftforge.net/
53+
54+
Additionally, it contains an implementation of topological sort based on that
55+
published at http://keithschwarz.com/interesting/code/?dir=topological-sort
56+
57+
It also contains code from the Maven project for performing versioned dependency
58+
resolution. http://maven.apache.org/
59+
60+
It also contains a partial repackaging of the javaxdelta library from http://sourceforge.net/projects/javaxdelta/
61+
with credit to it's authors.
62+
63+
Forge Mod Loader downloads components from the Minecraft Coder Pack
64+
(http://mcp.ocean-labs.de/index.php/Main_Page) with kind permission from the MCP team.
65+

0 commit comments

Comments
 (0)