Add special case to add Side/SideOnly to difflist

This commit is contained in:
LexManos 2012-08-11 02:25:40 -07:00
parent 7e35f13f30
commit 953f99787e
1 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,8 @@ def write_changed(fh, pre, post, name):
if clazz.startswith("net/minecraft/src/"):
clazz=clazz[len("net/minecraft/src/"):]
fh.write("%s/%s.class\n" %(name,clazz))
fh.write("%s/cpw/mods/fml/common/asm/SideOnly.class" % name)
fh.write("%s/cpw/mods/fml/common/Side.class" % name)
if __name__ == '__main__':
main()