Skip to content

Commit aebd572

Browse files
committedJan 23, 2022
pmines is 2022 ready
1 parent 5dc3ebe commit aebd572

35 files changed

+194
-97
lines changed
 

‎HEADER

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PrivateMinesRewrite a plugin for Spigot
2-
Copyright (C) 2021 Kyle Hicks
2+
Copyright (C) 2021 - 2022 Kyle Hicks
33

44
This program is free software: you can redistribute it and/or modify
55
it under the terms of the GNU General Public License as published by

‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Kyle Hicks
3+
Copyright (c) 2021 - 2022 Kyle Hicks
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/PrivateMines.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/commands/PrivateMinesCommand.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal
@@ -72,7 +72,6 @@ public class PrivateMinesCommand {
7272
private final MineWorldManager mineWorldManager;
7373
private final PrivateMines privateMines;
7474
Utils utils;
75-
Path path;
7675

7776
public PrivateMinesCommand(PrivateMines privateMine) {
7877
this.privateMines = privateMine;

‎plugin/src/main/java/me/untouchedodin0/plugin/config/MenuConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/config/MineConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/factory/MineFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/factory/PasteFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/mines/Mine.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/mines/MineType.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal
@@ -21,7 +21,6 @@ of this software and associated documentation files (the "Software"), to deal
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2222
SOFTWARE.
2323
*/
24-
2524
package me.untouchedodin0.plugin.mines;
2625

2726
import com.cryptomorin.xseries.XMaterial;

‎plugin/src/main/java/me/untouchedodin0/plugin/mines/WorldEditMine.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/mines/WorldEditMineType.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/mines/data/WorldEditMineData.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/queue/QueueSystem.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/storage/MineStorage.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/util/Utils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/util/addons/AddonLoader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/util/materials/Materials.java

-34
This file was deleted.

‎plugin/src/main/java/me/untouchedodin0/plugin/util/placeholderapi/PrivateMinesExpansion.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/util/worldedit/Adapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/util/worldedit/MineFactoryCompat.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/util/worldedit/MineSchematic.java

-35
This file was deleted.

‎plugin/src/main/java/me/untouchedodin0/plugin/util/worldedit/WorldEditRegion.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/util/worldedit/WorldEditVector.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/world/EmptyWorldGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/world/MineWorldManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/world/utils/Direction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎plugin/src/main/java/me/untouchedodin0/plugin/world/utils/MineLoopUtil.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021 Kyle Hicks
4+
Copyright (c) 2021 - 2022 Kyle Hicks
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎we_6/src/main/java/me/untouchedodin0/privatemines/we_6/worldedit/MineFactory6.java

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
MIT License
3+
4+
Copyright (c) 2021 - 2022 Kyle Hicks
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in all
14+
copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE.
23+
*/
24+
125
package me.untouchedodin0.privatemines.we_6.worldedit;
226

327
import org.bukkit.Bukkit;

‎we_6/src/main/java/me/untouchedodin0/privatemines/we_6/worldedit/Utils.java

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
MIT License
3+
4+
Copyright (c) 2021 - 2022 Kyle Hicks
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in all
14+
copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE.
23+
*/
24+
125
package me.untouchedodin0.privatemines.we_6.worldedit;
226

327
import com.cryptomorin.xseries.XMaterial;

0 commit comments

Comments
 (0)
Please sign in to comment.