aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin')
-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
11 files changed, 102 insertions, 1 deletions
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