From b0b337cbc66be6285c86d766aeea3b048c103a71 Mon Sep 17 00:00:00 2001 From: Harmonic Date: Tue, 14 Jan 2020 14:50:26 -0500 Subject: [PATCH 1/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cdb52090..dc2b4567 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Arcturus Morningstar is released under the [GNU General Public License v3](https ## Versions ## ![image](https://img.shields.io/badge/VERSION-2.2.0-success.svg?style=for-the-badge&logo=appveyor) -![image](https://img.shields.io/badge/STATUS-UNSTABLE-red.svg?style=for-the-badge&logo=appveyor) +![image](https://img.shields.io/badge/STATUS-STABLE-blue.svg?style=for-the-badge&logo=appveyor) Compiled Download: https://git.krews.org/morningstar/Arcturus-Community/releases From 4839658d69a6e1fc7edb0c71c2e4873624eaf497 Mon Sep 17 00:00:00 2001 From: Harmonic Date: Thu, 16 Jan 2020 18:26:50 -0500 Subject: [PATCH 2/5] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dc2b4567..d7791d35 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ TheGeneral's own words were "dont like it then dont use it". We did not like wha Arcturus Morningstar is released under the [GNU General Public License v3](https://www.gnu.org/licenses/gpl-3.0.txt). ## Versions ## -![image](https://img.shields.io/badge/VERSION-2.2.0-success.svg?style=for-the-badge&logo=appveyor) +![image](https://img.shields.io/badge/VERSION-2.2.1-success.svg?style=for-the-badge&logo=appveyor) ![image](https://img.shields.io/badge/STATUS-STABLE-blue.svg?style=for-the-badge&logo=appveyor) Compiled Download: https://git.krews.org/morningstar/Arcturus-Community/releases @@ -31,6 +31,9 @@ When making an bug report or a feature request use the template we provide so th - Alejandro - Harmony - Quadral (Pathfinder) +- Skeletor +- Arpyage +- ItsGiuseppe ## Discord ## Join us on Discord at https://discord.gg/BzfFsTp From 33264fb43daf0e22a901983f614932cca149bcfc Mon Sep 17 00:00:00 2001 From: Harmonic Date: Sun, 19 Jan 2020 17:43:50 -0500 Subject: [PATCH 3/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d7791d35..d9a0cf39 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ TheGeneral's own words were "dont like it then dont use it". We did not like wha Arcturus Morningstar is released under the [GNU General Public License v3](https://www.gnu.org/licenses/gpl-3.0.txt). ## Versions ## -![image](https://img.shields.io/badge/VERSION-2.2.1-success.svg?style=for-the-badge&logo=appveyor) +![image](https://img.shields.io/badge/VERSION-2.2.2-success.svg?style=for-the-badge&logo=appveyor) ![image](https://img.shields.io/badge/STATUS-STABLE-blue.svg?style=for-the-badge&logo=appveyor) Compiled Download: https://git.krews.org/morningstar/Arcturus-Community/releases From 98858dd194b9ecc5d1384771e5b521a7322de63c Mon Sep 17 00:00:00 2001 From: Kitt Mustang Date: Sat, 1 Feb 2020 09:54:27 -0500 Subject: [PATCH 4/5] Fixed the default value of the repeat effects --- .../items/interactions/wired/triggers/WiredTriggerRepeater.java | 2 +- .../interactions/wired/triggers/WiredTriggerRepeaterLong.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeater.java b/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeater.java index 4476c515..f01adf13 100644 --- a/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeater.java +++ b/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeater.java @@ -19,7 +19,7 @@ import java.util.List; public class WiredTriggerRepeater extends InteractionWiredTrigger implements ICycleable { public static final WiredTriggerType type = WiredTriggerType.PERIODICALLY; - public static final int DEFAULT_DELAY = 20 * 500; + public static final int DEFAULT_DELAY = 10 * 500; protected int repeatTime = DEFAULT_DELAY; protected int counter = 0; diff --git a/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeaterLong.java b/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeaterLong.java index 5a0df5a1..5c88d006 100644 --- a/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeaterLong.java +++ b/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeaterLong.java @@ -18,7 +18,7 @@ import java.util.ArrayList; import java.util.List; public class WiredTriggerRepeaterLong extends InteractionWiredTrigger implements ICycleable { - public static final int DEFAULT_DELAY = 20 * 5000; + public static final int DEFAULT_DELAY = 10 * 5000; private static final WiredTriggerType type = WiredTriggerType.PERIODICALLY_LONG; private int repeatTime = DEFAULT_DELAY; private int counter = 0; From ffe900a07e84422d8240c47898dc5999570dc504 Mon Sep 17 00:00:00 2001 From: Alejandro <25-alejandro@users.noreply.git.krews.org> Date: Sat, 1 Feb 2020 13:27:02 -0500 Subject: [PATCH 5/5] Revert "Merge branch 'fixed-delays-value' into 'master'" This reverts merge request !93 --- .../items/interactions/wired/triggers/WiredTriggerRepeater.java | 2 +- .../interactions/wired/triggers/WiredTriggerRepeaterLong.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeater.java b/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeater.java index f01adf13..4476c515 100644 --- a/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeater.java +++ b/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeater.java @@ -19,7 +19,7 @@ import java.util.List; public class WiredTriggerRepeater extends InteractionWiredTrigger implements ICycleable { public static final WiredTriggerType type = WiredTriggerType.PERIODICALLY; - public static final int DEFAULT_DELAY = 10 * 500; + public static final int DEFAULT_DELAY = 20 * 500; protected int repeatTime = DEFAULT_DELAY; protected int counter = 0; diff --git a/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeaterLong.java b/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeaterLong.java index 5c88d006..5a0df5a1 100644 --- a/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeaterLong.java +++ b/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeaterLong.java @@ -18,7 +18,7 @@ import java.util.ArrayList; import java.util.List; public class WiredTriggerRepeaterLong extends InteractionWiredTrigger implements ICycleable { - public static final int DEFAULT_DELAY = 10 * 5000; + public static final int DEFAULT_DELAY = 20 * 5000; private static final WiredTriggerType type = WiredTriggerType.PERIODICALLY_LONG; private int repeatTime = DEFAULT_DELAY; private int counter = 0;