Skip to content

Commit

Permalink
🚚 RainBecomeThunder -> RainBeThunder
Browse files Browse the repository at this point in the history
  • Loading branch information
asoji committed May 29, 2022
1 parent 6ff5ba7 commit 1110999
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# RainBecomeThunder
# RainBeThunder

A mod that changes your weather to thudnerstorm everytime it rains, so you can sleep... or go after creepers to make the charged!
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ org.gradle.jvmargs=-Xmx1G
# Mod Properties
mod_version = 1.0.0
maven_group = community.devos.nautical
archives_base_name = rainbecomethunder
archives_base_name = rainbethunder
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package community.devos.nautical.rainbecomethunder;
package community.devos.nautical.rainbethunder;

import net.fabricmc.api.DedicatedServerModInitializer;
import net.fabricmc.loader.api.FabricLoader;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

public class RainBecomeThunderServer implements DedicatedServerModInitializer {
public static final String MOD_ID = "rainbecomethunder";
public class RainBeThunderServer implements DedicatedServerModInitializer {
public static final String MOD_ID = "rainbethunder";
public static final String VERSION = FabricLoader.getInstance().getModContainer(MOD_ID).get().getMetadata().getVersion().getFriendlyString();
public static final String MOD_NAME = FabricLoader.getInstance().getModContainer(MOD_ID).get().getMetadata().getName();

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package community.devos.nautical.rainbecomethunder.mixin;
package community.devos.nautical.rainbethunder.mixin;

import net.minecraft.core.Holder;
import net.minecraft.resources.ResourceKey;
Expand Down
12 changes: 6 additions & 6 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
{
"schemaVersion": 1,
"id": "rainbecomethunder",
"id": "rainbethunder",
"version": "${version}",

"name": "Rain Become Thunder",
"name": "Rain Be Thunder",
"description": "do you just hate rain so much that you want it to become a thunderstorm so you can sleep? well here ya go!",
"authors": [
"IMS212",
"devOS: Sanity Edition"
],
"contact": {
"homepage": "https://devos.one/",
"sources": "https://github.com/devOS-Sanity-Edition/RainBecomeThunder.git"
"sources": "https://github.com/devOS-Sanity-Edition/RainBeThunder.git"
},

"license": "MIT",
"icon": "assets/rainbecomethunder/icon.png",
"icon": "assets/rainbethunder/icon.png",

"environment": "server",
"entrypoints": {
"server": [
"community.devos.nautical.rainbecomethunder.RainBecomeThunderServer"
"community.devos.nautical.rainbethunder.RainBeThunderServer"
]
},
"mixins": [
"rainbecomethunder.mixins.json"
"rainbethunder.mixins.json"
],

"depends": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"required": true,
"minVersion": "0.8",
"package": "community.devos.nautical.rainbecomethunder.mixin",
"package": "community.devos.nautical.rainbethunder.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [],
"server": [
Expand Down

0 comments on commit 1110999

Please sign in to comment.