aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authornea <romangraef@gmail.com>2022-11-13 01:58:02 +0100
committernea <romangraef@gmail.com>2022-11-13 01:58:02 +0100
commit2e47f139aa5a6df25e30e266c009a51f7daec3c0 (patch)
tree20628be1f5d0ba1e23e55a18231faac4537a4f55 /src
parent2ba77d7d840b7fecbbf3825e1f507cd408c04f85 (diff)
downloadneuhax-2e47f139aa5a6df25e30e266c009a51f7daec3c0.tar.gz
neuhax-2e47f139aa5a6df25e30e266c009a51f7daec3c0.tar.bz2
neuhax-2e47f139aa5a6df25e30e266c009a51f7daec3c0.zip
license header
Diffstat (limited to 'src')
-rw-r--r--src/main/java/moe/nea/sky/mixin/MixinEnchantingSolvers.java10
-rw-r--r--src/main/java/moe/nea/sky/mixin/MixinFMLHandshakeMessageModList.java10
-rw-r--r--src/main/java/moe/nea/sky/mixin/MixinGenericBlockHighlighter.java10
-rw-r--r--src/main/java/moe/nea/sky/mixin/MixinUltrasequencerItem.java14
-rw-r--r--src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigEnchanting.java10
-rw-r--r--src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigFishing.java10
-rw-r--r--src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigWorld.java10
-rw-r--r--src/main/kotlin/moe/nea/sky/NEUHax.kt10
-rw-r--r--src/main/kotlin/moe/nea/sky/commands/NEUHaxCommand.kt10
-rw-r--r--src/main/kotlin/moe/nea/sky/config/HaxConfigEnchanting.kt10
-rw-r--r--src/main/kotlin/moe/nea/sky/config/HaxConfigFishing.kt10
-rw-r--r--src/main/kotlin/moe/nea/sky/config/HaxConfigWorld.kt10
-rw-r--r--src/main/kotlin/moe/nea/sky/constants.kt10
-rw-r--r--src/main/kotlin/moe/nea/sky/features/gui/Enchanting.kt10
-rw-r--r--src/main/kotlin/moe/nea/sky/features/world/AutoFishing.kt3
-rw-r--r--src/main/kotlin/moe/nea/sky/util/TimedBackoff.kt10
-rw-r--r--src/main/kotlin/moe/nea/sky/util/chatutils.kt10
-rw-r--r--src/main/kotlin/moe/nea/sky/util/click.kt10
18 files changed, 174 insertions, 3 deletions
diff --git a/src/main/java/moe/nea/sky/mixin/MixinEnchantingSolvers.java b/src/main/java/moe/nea/sky/mixin/MixinEnchantingSolvers.java
index e21718b..1a3f4eb 100644
--- a/src/main/java/moe/nea/sky/mixin/MixinEnchantingSolvers.java
+++ b/src/main/java/moe/nea/sky/mixin/MixinEnchantingSolvers.java
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.mixin;
import io.github.moulberry.notenoughupdates.miscfeatures.EnchantingSolvers;
diff --git a/src/main/java/moe/nea/sky/mixin/MixinFMLHandshakeMessageModList.java b/src/main/java/moe/nea/sky/mixin/MixinFMLHandshakeMessageModList.java
index df8cee3..a4f828b 100644
--- a/src/main/java/moe/nea/sky/mixin/MixinFMLHandshakeMessageModList.java
+++ b/src/main/java/moe/nea/sky/mixin/MixinFMLHandshakeMessageModList.java
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.mixin;
import moe.nea.sky.ConstantsKt;
diff --git a/src/main/java/moe/nea/sky/mixin/MixinGenericBlockHighlighter.java b/src/main/java/moe/nea/sky/mixin/MixinGenericBlockHighlighter.java
index b9d6e33..303b598 100644
--- a/src/main/java/moe/nea/sky/mixin/MixinGenericBlockHighlighter.java
+++ b/src/main/java/moe/nea/sky/mixin/MixinGenericBlockHighlighter.java
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.mixin;
import io.github.moulberry.notenoughupdates.NotEnoughUpdates;
diff --git a/src/main/java/moe/nea/sky/mixin/MixinUltrasequencerItem.java b/src/main/java/moe/nea/sky/mixin/MixinUltrasequencerItem.java
index 97cce00..c28d5e6 100644
--- a/src/main/java/moe/nea/sky/mixin/MixinUltrasequencerItem.java
+++ b/src/main/java/moe/nea/sky/mixin/MixinUltrasequencerItem.java
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.mixin;
import moe.nea.sky.features.gui.Enchanting;
@@ -9,10 +19,10 @@ import org.spongepowered.asm.mixin.Shadow;
@Mixin(targets = "io.github.moulberry.notenoughupdates.miscfeatures.EnchantingSolvers$UltrasequencerItem")
public class MixinUltrasequencerItem implements Enchanting.AccessibleUltrasequencerItem {
@Shadow
- private ItemStack stack;
+ ItemStack stack;
@Shadow
- private int containerIndex;
+ int containerIndex;
@NotNull
@Override
diff --git a/src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigEnchanting.java b/src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigEnchanting.java
index be969ae..903c156 100644
--- a/src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigEnchanting.java
+++ b/src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigEnchanting.java
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.mixin.config;
import com.google.gson.annotations.Expose;
diff --git a/src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigFishing.java b/src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigFishing.java
index ccdd034..7f92583 100644
--- a/src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigFishing.java
+++ b/src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigFishing.java
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.mixin.config;
import com.google.gson.annotations.Expose;
diff --git a/src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigWorld.java b/src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigWorld.java
index 959ae6e..10dd6b0 100644
--- a/src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigWorld.java
+++ b/src/main/java/moe/nea/sky/mixin/config/MixinHaxConfigWorld.java
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.mixin.config;
import com.google.gson.annotations.Expose;
diff --git a/src/main/kotlin/moe/nea/sky/NEUHax.kt b/src/main/kotlin/moe/nea/sky/NEUHax.kt
index 46d5f88..2448bf1 100644
--- a/src/main/kotlin/moe/nea/sky/NEUHax.kt
+++ b/src/main/kotlin/moe/nea/sky/NEUHax.kt
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky
import moe.nea.sky.commands.NEUHaxCommand
diff --git a/src/main/kotlin/moe/nea/sky/commands/NEUHaxCommand.kt b/src/main/kotlin/moe/nea/sky/commands/NEUHaxCommand.kt
index 5825e7d..5c9c298 100644
--- a/src/main/kotlin/moe/nea/sky/commands/NEUHaxCommand.kt
+++ b/src/main/kotlin/moe/nea/sky/commands/NEUHaxCommand.kt
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.commands
import moe.nea.sky.util.showMessage
diff --git a/src/main/kotlin/moe/nea/sky/config/HaxConfigEnchanting.kt b/src/main/kotlin/moe/nea/sky/config/HaxConfigEnchanting.kt
index 6e7e5f2..d8a6364 100644
--- a/src/main/kotlin/moe/nea/sky/config/HaxConfigEnchanting.kt
+++ b/src/main/kotlin/moe/nea/sky/config/HaxConfigEnchanting.kt
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.config
interface HaxConfigEnchanting {
diff --git a/src/main/kotlin/moe/nea/sky/config/HaxConfigFishing.kt b/src/main/kotlin/moe/nea/sky/config/HaxConfigFishing.kt
index 634049b..98f33eb 100644
--- a/src/main/kotlin/moe/nea/sky/config/HaxConfigFishing.kt
+++ b/src/main/kotlin/moe/nea/sky/config/HaxConfigFishing.kt
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.config
interface HaxConfigFishing {
diff --git a/src/main/kotlin/moe/nea/sky/config/HaxConfigWorld.kt b/src/main/kotlin/moe/nea/sky/config/HaxConfigWorld.kt
index fd48461..d4c654f 100644
--- a/src/main/kotlin/moe/nea/sky/config/HaxConfigWorld.kt
+++ b/src/main/kotlin/moe/nea/sky/config/HaxConfigWorld.kt
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.config
interface HaxConfigWorld {
diff --git a/src/main/kotlin/moe/nea/sky/constants.kt b/src/main/kotlin/moe/nea/sky/constants.kt
index 69259d2..b8e43d6 100644
--- a/src/main/kotlin/moe/nea/sky/constants.kt
+++ b/src/main/kotlin/moe/nea/sky/constants.kt
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky
import org.slf4j.LoggerFactory
diff --git a/src/main/kotlin/moe/nea/sky/features/gui/Enchanting.kt b/src/main/kotlin/moe/nea/sky/features/gui/Enchanting.kt
index 6a943c0..6737806 100644
--- a/src/main/kotlin/moe/nea/sky/features/gui/Enchanting.kt
+++ b/src/main/kotlin/moe/nea/sky/features/gui/Enchanting.kt
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.features.gui
import io.github.moulberry.notenoughupdates.NotEnoughUpdates
diff --git a/src/main/kotlin/moe/nea/sky/features/world/AutoFishing.kt b/src/main/kotlin/moe/nea/sky/features/world/AutoFishing.kt
index f3f917c..8e0a0be 100644
--- a/src/main/kotlin/moe/nea/sky/features/world/AutoFishing.kt
+++ b/src/main/kotlin/moe/nea/sky/features/world/AutoFishing.kt
@@ -1,4 +1,4 @@
-/**
+/*
* Copyright (C) 2022 Linnea Gräf
*
* This file is part of NEUHax.
@@ -7,6 +7,7 @@
* NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
*/
+
package moe.nea.sky.features.world
import cc.polyfrost.oneconfig.utils.dsl.mc
diff --git a/src/main/kotlin/moe/nea/sky/util/TimedBackoff.kt b/src/main/kotlin/moe/nea/sky/util/TimedBackoff.kt
index a8af120..14d20df 100644
--- a/src/main/kotlin/moe/nea/sky/util/TimedBackoff.kt
+++ b/src/main/kotlin/moe/nea/sky/util/TimedBackoff.kt
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.util
import kotlin.time.Duration
diff --git a/src/main/kotlin/moe/nea/sky/util/chatutils.kt b/src/main/kotlin/moe/nea/sky/util/chatutils.kt
index 6ec756f..509b069 100644
--- a/src/main/kotlin/moe/nea/sky/util/chatutils.kt
+++ b/src/main/kotlin/moe/nea/sky/util/chatutils.kt
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.util
import net.minecraft.command.CommandBase
diff --git a/src/main/kotlin/moe/nea/sky/util/click.kt b/src/main/kotlin/moe/nea/sky/util/click.kt
index f1c5c97..c51724b 100644
--- a/src/main/kotlin/moe/nea/sky/util/click.kt
+++ b/src/main/kotlin/moe/nea/sky/util/click.kt
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2022 Linnea Gräf
+ *
+ * This file is part of NEUHax.
+ *
+ * NEUHax 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.
+ * NEUHax 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 NEUHax. If not, see <https://www.gnu.org/licenses/>.
+ */
+
package moe.nea.sky.util
import cc.polyfrost.oneconfig.utils.dsl.mc