Skip to content

Commit

Permalink
Added GNU license
Browse files Browse the repository at this point in the history
  • Loading branch information
NicosaurusRex99 committed Nov 20, 2017
1 parent 1f0aeac commit 33c6628
Show file tree
Hide file tree
Showing 58 changed files with 821 additions and 1 deletion.
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/Config.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod;

import naturix.jerrysmod.proxy.CommonProxy;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/FurnaceRecipe.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod;

import naturix.jerrysmod.registries.ModBlocks;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/JerryHelpers.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod;

import naturix.jerrysmod.blocks.JMPortal;
Expand Down
16 changes: 15 additions & 1 deletion src/main/java/naturix/jerrysmod/JerrysMod.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod;

import naturix.jerrysmod.command.DimensionTp;
Expand Down Expand Up @@ -25,7 +39,7 @@
public class JerrysMod
{
public static final String MODID = "jerrysmod";
public static final String VERSION = "1.12.2.0E";
public static final String VERSION = "1.12.2.0F";
public static final String NAME = "Jerry's Mod";


Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/armor/ItemBase.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.armor;

import java.util.ArrayList;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/armor/JerryBoots.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.armor;

import naturix.jerrysmod.JerrysMod;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/armor/JerryChestplate.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.armor;

import naturix.jerrysmod.JerrysMod;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/armor/JerryHelmet.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.armor;

import naturix.jerrysmod.JerrysMod;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/armor/JerryLeggings.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.armor;

import naturix.jerrysmod.JerrysMod;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/armor/SlimeBoots.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.armor;

import naturix.jerrysmod.JerrysMod;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/armor/SlimeChestplate.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.armor;

import naturix.jerrysmod.JerrysMod;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/armor/SlimeHelmet.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.armor;

import naturix.jerrysmod.JerrysMod;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/armor/SlimeLeggings.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.armor;

import naturix.jerrysmod.JerrysMod;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/biome/BiomeSlime.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.biome;

import java.util.Random;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/blocks/JMPortal.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.blocks;

import java.util.ArrayList;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/blocks/OliveLeaves.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.blocks;

import java.util.List;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/blocks/OliveLog.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.blocks;

import naturix.jerrysmod.JerrysMod;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/blocks/OlivePlanks.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.blocks;

import naturix.jerrysmod.JerrysMod;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/blocks/OliveSapling.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.blocks;

import java.util.Random;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/blocks/SlimeGrass.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.blocks;

import java.util.Random;
Expand Down
14 changes: 14 additions & 0 deletions src/main/java/naturix/jerrysmod/blocks/SlimeOre.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
Jerry's Mod - A Minecraft Mod
Copyright (C) 2016-2017 Hawaii_Beach
This program Is free software: you can redistribute it And/Or modify
it under the terms Of the GNU General Public License As published by
the Free Software Foundation, either version 3 Of the License, Or
(at your option) any later version.
This program Is distributed In the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty Of
MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License For more details.
You should have received a copy Of the GNU General Public License
along with this program. If Not, see <http://www.gnu.org/licenses/>.
*/
package naturix.jerrysmod.blocks;

import naturix.jerrysmod.JerrysMod;
Expand Down
Loading

0 comments on commit 33c6628

Please sign in to comment.