-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
92 changed files
with
262 additions
and
332 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 0 additions & 44 deletions
44
src/main/java/com/windanesz/ancientspellcraft/AncientSpellcraftMixinLoader.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
src/main/java/com/windanesz/ancientspellcraft/client/gui/ContainerInventoryInItemStack.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
src/main/java/com/windanesz/ancientspellcraft/core/ASContainer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package com.windanesz.ancientspellcraft.core; | ||
|
||
import com.google.common.eventbus.EventBus; | ||
import net.minecraftforge.fml.common.DummyModContainer; | ||
import net.minecraftforge.fml.common.LoadController; | ||
import net.minecraftforge.fml.common.ModMetadata; | ||
|
||
public class ASContainer extends DummyModContainer { | ||
public ASContainer() { | ||
super(new ModMetadata()); | ||
ModMetadata meta = this.getMetadata(); | ||
meta.modId = "ancientspellcraftcore"; | ||
meta.name = "Ancient Spellcraft Core"; | ||
meta.description = "Core functionality of Ancient Spellcraft"; | ||
meta.version = "1.12.2-1.0.0"; | ||
meta.authorList.add("WinDanesz"); | ||
} | ||
|
||
@Override | ||
public boolean registerBus(EventBus bus, LoadController controller) { | ||
bus.register(this); | ||
return true; | ||
} | ||
} |
Oops, something went wrong.