Update forge version
Updated maven repo
This commit is contained in:
parent
d99ee0e9a2
commit
408aeedb0f
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Une reprise du mod (mort) ORBITAL BOMBARDMENT de la 1.6.4. Celui ci permet d'ajouter
|
Une reprise du mod (mort) ORBITAL BOMBARDMENT de la 1.6.4. Celui ci permet d'ajouter
|
||||||
au jeu de nouveaux blocs et items pour tirer de puissantes salves destructrices sur
|
au jeu de nouveaux blocs et items pour tirer de puissantes salves destructrices sur
|
||||||
vos fuc***** cochons !
|
vos fuc$@# cochons !
|
||||||
|
|
||||||
Bien sûr pour le moment je compte seulement porter le mod sur la 1.7.10/1.10.2.
|
Bien sûr pour le moment je compte seulement porter le mod sur la 1.7.10/1.10.2.
|
||||||
Après peut être je continuerai à ajouter des élèments pour agrandir ces fonctionnalités.
|
Après peut être je continuerai à ajouter des élèments pour agrandir ces fonctionnalités.
|
||||||
|
25
build.gradle
25
build.gradle
@ -14,10 +14,10 @@ apply plugin: 'net.minecraftforge.gradle.forge'
|
|||||||
|
|
||||||
|
|
||||||
version = "0.1.3"
|
version = "0.1.3"
|
||||||
//group = "fr.jackcartersmith.orbsat" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
group = "fr.jackcartersmith.orbsat" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||||
group = "jackcartersmith"
|
//group = "jackcartersmith"
|
||||||
def archiveGroup = group
|
//def archiveGroup = group
|
||||||
archivesBaseName = "OrbitalSatellite"
|
//archivesBaseName = "OrbitalSatellite"
|
||||||
|
|
||||||
sourceCompatibility = targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.
|
sourceCompatibility = targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.
|
||||||
compileJava {
|
compileJava {
|
||||||
@ -25,8 +25,8 @@ compileJava {
|
|||||||
}
|
}
|
||||||
|
|
||||||
minecraft {
|
minecraft {
|
||||||
version = "1.12.2-14.23.5.2768"
|
version = "1.12.2-14.23.5.2838"
|
||||||
runDir = "run"
|
runDir = "eclipse"
|
||||||
|
|
||||||
// the mappings can be changed at any time, and must be in the following format.
|
// the mappings can be changed at any time, and must be in the following format.
|
||||||
// snapshot_YYYYMMDD snapshot are built nightly.
|
// snapshot_YYYYMMDD snapshot are built nightly.
|
||||||
@ -65,9 +65,6 @@ repositories {
|
|||||||
name 'CoFH Maven'
|
name 'CoFH Maven'
|
||||||
url "http://maven.covers1624.net/"
|
url "http://maven.covers1624.net/"
|
||||||
}
|
}
|
||||||
maven { // Albedo Lights
|
|
||||||
url 'https://repo.elytradev.com/'
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@ -94,12 +91,10 @@ dependencies {
|
|||||||
|
|
||||||
compileOnly "mezz.jei:jei_1.12.2:4.10.+"
|
compileOnly "mezz.jei:jei_1.12.2:4.10.+"
|
||||||
compileOnly "cofh:RedstoneFlux:1.12-2.+:deobf"
|
compileOnly "cofh:RedstoneFlux:1.12-2.+:deobf"
|
||||||
compileOnly "opencomputers:OpenComputers:MC1.12.2:1.7.2.67"//li.cil.oc:OpenComputers:MC1.12.1-1.7.0.+"
|
compile "li.cil.oc:OpenComputers:MC1.12.2-1.7.+:api"
|
||||||
compileOnly "mcp.mobius.waila:Hwyla:1.8.20-B35_1.12"
|
compile "mcp.mobius.waila:Hwyla:1.8.26-B41_1.12.2:api"
|
||||||
compileOnly 'industrial-craft:industrialcraft-2:release:ex112'//'net.industrial-craft:industrialcraft-2:2.8.+'
|
//compileOnly 'industrial-craft:industrialcraft-2:release:ex112'//'net.industrial-craft:industrialcraft-2:2.8.+'
|
||||||
compileOnly 'baubles:Baubles:1.12:1.5.2'
|
//compileOnly 'baubles:Baubles:1.12:1.5.2'
|
||||||
deobfCompile 'elucent:albedo:2.0-SNAPSHOT'
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
processResources {
|
processResources {
|
||||||
|
@ -1,50 +0,0 @@
|
|||||||
package jackcartersmith.orbsat.common.compat;
|
|
||||||
|
|
||||||
import elucent.albedo.event.GatherLightsEvent;
|
|
||||||
import elucent.albedo.lighting.Light;
|
|
||||||
import net.minecraft.util.math.Vec3d;
|
|
||||||
import net.minecraftforge.common.MinecraftForge;
|
|
||||||
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
|
||||||
import net.minecraftforge.fml.relauncher.Side;
|
|
||||||
import net.minecraftforge.fml.relauncher.SideOnly;
|
|
||||||
|
|
||||||
public class AlbedoHelper extends OrbsatCompatModule
|
|
||||||
{
|
|
||||||
@Override
|
|
||||||
public void preInit()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void init()
|
|
||||||
{
|
|
||||||
MinecraftForge.EVENT_BUS.register(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
@SubscribeEvent
|
|
||||||
@SideOnly(Side.CLIENT)
|
|
||||||
public void gatherLights(GatherLightsEvent event)
|
|
||||||
{
|
|
||||||
for(LightningAnimation animation : TileEntityTeslaCoil.effectMap.values())
|
|
||||||
{
|
|
||||||
if(animation.shoudlRecalculateLightning())
|
|
||||||
animation.createLightning(Utils.RAND);
|
|
||||||
|
|
||||||
Light.Builder builder = Light.builder();
|
|
||||||
builder.radius(2.5f);
|
|
||||||
builder.color(77/255f, 74/255f, 152/255f);
|
|
||||||
for(Vec3d point : animation.subPoints)
|
|
||||||
{
|
|
||||||
builder.pos(point);
|
|
||||||
event.getLightList().add(builder.build());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void postInit()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
@ -18,7 +18,6 @@ public abstract class OrbsatCompatModule {
|
|||||||
|
|
||||||
static
|
static
|
||||||
{
|
{
|
||||||
moduleClasses.put("albedo", AlbedoHelper.class);
|
|
||||||
//moduleClasses.put("baubles", BaublesHelper.class);
|
//moduleClasses.put("baubles", BaublesHelper.class);
|
||||||
//moduleClasses.put("opencomputers", OCHelper.class);
|
//moduleClasses.put("opencomputers", OCHelper.class);
|
||||||
moduleClasses.put("waila", WailaHelper.class);
|
moduleClasses.put("waila", WailaHelper.class);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user