Skip to content

Commit

Permalink
Updated license info for consistency; (Final Update?)
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackJar72 committed Mar 21, 2019
1 parent 282e4d2 commit b47a6b2
Show file tree
Hide file tree
Showing 108 changed files with 345 additions and 1,353 deletions.
9 changes: 3 additions & 6 deletions java/jaredbgreat/dldungeons/ConfigHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@


/*
* This mod is the creation and copyright (c) 2015
* of Jared Blackburn (JaredBGreat).
*
* It is licensed under the creative commons 4.0 attribution license: *
* https://creativecommons.org/licenses/by/4.0/legalcode
*/
* Doomlike Dungeons by is licensed the MIT License
* Copyright (c) 2014-2018 Jared Blackburn
*/


import jaredbgreat.dldungeons.builder.Builder;
Expand Down
10 changes: 3 additions & 7 deletions java/jaredbgreat/dldungeons/Difficulty.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
package jaredbgreat.dldungeons;


/*
* This mod is the creation and copyright (c) 2015
* of Jared Blackburn (JaredBGreat).
*
* It is licensed under the creative commons 4.0 attribution license: *
* https://creativecommons.org/licenses/by/4.0/legalcode
*/
* Doomlike Dungeons by is licensed the MIT License
* Copyright (c) 2014-2018 Jared Blackburn
*/

import java.util.Random;

Expand Down
8 changes: 3 additions & 5 deletions java/jaredbgreat/dldungeons/DoomlikeDungeons.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@
* A procedural multi-room dungeon generator for Minecraft inspired by the
* Oblige 3.57 level generator for Doom / Doom II / Heretic / Hexen etc.
*
* This mod is the creation and copyright (c) 2015 of Jared Blackburn (JaredBGreat).
*
* It is licensed under the creative commons 4.0 attribution license: *
* https://creativecommons.org/licenses/by/4.0/legalcode
*/
* Doomlike Dungeons by is licensed the MIT License
* Copyright (c) 2014-2018 Jared Blackburn
*/

import jaredbgreat.dldungeons.commands.CmdDimID;
import jaredbgreat.dldungeons.commands.CmdForceInstallThemes;
Expand Down
9 changes: 3 additions & 6 deletions java/jaredbgreat/dldungeons/GenerationHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@


/*
* This mod is the creation and copyright (c) 2015
* of Jared Blackburn (JaredBGreat).
*
* It is licensed under the creative commons 4.0 attribution license: *
* https://creativecommons.org/licenses/by/4.0/legalcode
*/
* Doomlike Dungeons by is licensed the MIT License
* Copyright (c) 2014-2018 Jared Blackburn
*/


import static jaredbgreat.dldungeons.builder.Builder.placeDungeon;
Expand Down
9 changes: 3 additions & 6 deletions java/jaredbgreat/dldungeons/Info.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@


/*
* This mod is the creation and copyright (c) 2015
* of Jared Blackburn (JaredBGreat).
*
* It is licensed under the creative commons 4.0 attribution license:
* https://creativecommons.org/licenses/by/4.0/legalcode
*/
* Doomlike Dungeons by is licensed the MIT License
* Copyright (c) 2014-2018 Jared Blackburn
*/


public final class Info {
Expand Down
9 changes: 3 additions & 6 deletions java/jaredbgreat/dldungeons/ReadAPI.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
package jaredbgreat.dldungeons;

/*
* This mod is the creation and copyright (c) 2015
* of Jared Blackburn (JaredBGreat).
*
* It is licensed under the creative commons 4.0 attribution license:
* https://creativecommons.org/licenses/by/4.0/legalcode
*/
* Doomlike Dungeons by is licensed the MIT License
* Copyright (c) 2014-2018 Jared Blackburn
*/

import static jaredbgreat.dldungeons.builder.Builder.placeDungeon;
import jaredbgreat.dldungeons.themes.ThemeReader;
Expand Down
9 changes: 3 additions & 6 deletions java/jaredbgreat/dldungeons/api/DLDEvent.java
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
package jaredbgreat.dldungeons.api;

/*
* This mod is the creation and copyright (c) 2015
* of Jared Blackburn (JaredBGreat).
* Doomlike Dungeons by is licensed the MIT License
* Copyright (c) 2014-2018 Jared Blackburn
*
* This class (and all lines calling its methods elsewhere thus far) is by
* frodare (Charles Howard), late 2016.
*
* It is licensed under the creative commons 4.0 attribution license: *
* https://creativecommons.org/licenses/by/4.0/legalcode
*/
*/

import java.util.Random;

Expand Down
9 changes: 3 additions & 6 deletions java/jaredbgreat/dldungeons/api/DLDungeonsAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,9 @@


/*
* This API is the creation and copyright (c) 2015
* of Jared Blackburn (JaredBGreat).
*
* It is licensed under the creative commons 4.0 attribution license: *
* https://creativecommons.org/licenses/by/4.0/legalcode
*/
* Doomlike Dungeons by is licensed the MIT License
* Copyright (c) 2014-2018 Jared Blackburn
*/

public class DLDungeonsAPI {

Expand Down
5 changes: 5 additions & 0 deletions java/jaredbgreat/dldungeons/api/package-info.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Doomlike Dungeons by is licensed the MIT License
* Copyright (c) 2014-2018 Jared Blackburn
*/

@API(owner = "DLDungeonsJBG", apiVersion = "1.1", provides = "DLDungeonsAPI")
package jaredbgreat.dldungeons.api;

Expand Down
11 changes: 3 additions & 8 deletions java/jaredbgreat/dldungeons/builder/Builder.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,9 @@


/*
* This mod is the creation and copyright (c) 2015
* of Jared Blackburn (JaredBGreat).
*
* Forge event code by Charles Howard, 2016.
*
* It is licensed under the creative commons 4.0 attribution license: *
* https://creativecommons.org/licenses/by/4.0/legalcode
*/
* Doomlike Dungeons by is licensed the MIT License
* Copyright (c) 2014-2018 Jared Blackburn
*/


import jaredbgreat.dldungeons.DoomlikeDungeons;
Expand Down
9 changes: 3 additions & 6 deletions java/jaredbgreat/dldungeons/builder/DBlock.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
package jaredbgreat.dldungeons.builder;

/*
* This mod is the creation and copyright (c) 2015
* of Jared Blackburn (JaredBGreat).
*
* It is licensed under the creative commons 4.0 attribution license: *
* https://creativecommons.org/licenses/by/4.0/legalcode
*/
* Doomlike Dungeons by is licensed the MIT License
* Copyright (c) 2014-2018 Jared Blackburn
*/

import jaredbgreat.dldungeons.api.DLDEvent;
import jaredbgreat.dldungeons.debug.Logging;
Expand Down
45 changes: 0 additions & 45 deletions java/jaredbgreat/dldungeons/cache/AbstractCachable.java

This file was deleted.

Loading

0 comments on commit b47a6b2

Please sign in to comment.