Skip to content

Commit

Permalink
Rename project
Browse files Browse the repository at this point in the history
  • Loading branch information
ItzSwirlz committed Feb 17, 2022
1 parent 567e6c7 commit 82f4168
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# BTEServerSwitcher
A Client-side Forge mod that adds a command to send you to a Build The Earth server of choice.
# BTELocationSwitcher
A client-side Forge mod that lets you switch your location, from other build servers to points of interest.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '0.0.1'
group = 'com.github.ItzSwirlz.BTEServerSwitcher' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'BTEServerSwitcher'
group = 'com.github.ItzSwirlz.BTELocationSwitcher' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'btelocationswitcher'

sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.

Expand Down Expand Up @@ -87,7 +87,7 @@ dependencies {
jar {
manifest {
attributes([
"Specification-Title": "bteserverswitcher",
"Specification-Title": "btelocationswitcher",
"Specification-Vendor": "ItzSwirlz",
"Specification-Version": "0.0.1",
"Implementation-Title": project.name,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.ItzSwirlz.BTEServerSwitcher;
package com.github.ItzSwirlz.BTELocationSwitcher;

import java.util.Arrays;
import java.util.Collections;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
package com.github.ItzSwirlz.BTEServerSwitcher;
package com.github.ItzSwirlz.BTELocationSwitcher;

import net.minecraftforge.client.ClientCommandHandler;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;

@Mod(modid = BTEServerSwitcher.MODID, name = BTEServerSwitcher.NAME, version = BTEServerSwitcher.VERSION)
public class BTEServerSwitcher
@Mod(modid = BTELocationSwitcher.MODID, name = BTELocationSwitcher.NAME, version = BTELocationSwitcher.VERSION)
public class BTELocationSwitcher
{
public static final String MODID = "bteserverswitcher";
public static final String NAME = "Build The Earth Server Switcher";
public static final String MODID = "btelocationswitcher";
public static final String NAME = "Build The Earth Location Switcher";
public static final String VERSION = "0.0.1";

@EventHandler
Expand Down
Binary file added src/main/resources/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[
{
"modid": "bteserverswitcher",
"name": "Build The Earth Server Switcher",
"description": "A client-side Forge mod that adds a command to send you to a Build The Earth server of choice.",
"modid": "btelocationswitcher",
"name": "Build The Earth Location Switcher",
"description": "A client-side Forge mod that lets you switch your location, from other build servers to points of interest.",
"version": "${version}",
"mcversion": "${mcversion}",
"url": "https://github.com/ItzSwirlz/BTEServerSwitcher",
"url": "https://github.com/ItzSwirlz/BTELocationSwitcher",
"updateUrl": "",
"authorList": ["ItzSwirlz"],
"credits": "KaiKikuchi, SmylerMC, the Forge Developers, the Terra++/Terra121/Build The Earth developers, and TheChewyMC for helping me, as an 8 year old, learn how to make my first Minecraft mod (1.7.10) and make me get into programming.",
"logoFile": "",
"logoFile": "assets/btelocationswitcher/icon.png",
"screenshots": [],
"dependencies": []
}
Expand Down

0 comments on commit 82f4168

Please sign in to comment.