Skip to content

Commit a47d87c

Browse files
committed
Bees/German
1 parent 6b6d5d7 commit a47d87c

5 files changed

Lines changed: 32 additions & 9 deletions

File tree

changelog.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
== UPDATING WILL DELETE YOUR CONFIG.YML ==
22
* Create a backup of your config.yml if you wish to import all your old settings!
3+
=== v6.6 ===
4+
+ Added support for Minecraft 1.15
5+
+ Added 1.15 effects: 'dripping_honey', 'falling_honey', 'falling_nectar', and 'landing_honey'
6+
+ Added new lang file de_DE.lang (German)
7+
* Fixed an issue where the 'arrows' style wouldn't load properly with preset groups
8+
* Fixed an issue where shooting an arrow into a portal would throw errors
9+
=== v6.5 ===
10+
+ Added Russian translation file ru_RU.lang
11+
+ Added slightly better vanish plugin support
12+
* Players no longer need an effect permission to open the GUI when gui-presets-only is true in the config.yml
13+
* Fixed error with the celebration style
14+
* Fixed error with the arrows style in 1.14+
15+
* Fixed '/pp reload' not being allowed from console
316
=== v6.4 ===
417
+ Added support for Minecraft 1.14
518
+ Added 1.14 effects: 'campfire_cosy_smoke', 'campfire_signal_smoke', 'composter', 'falling_lava', 'falling_water', 'landing_lava', 'sneeze'

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.esophose.playerparticles</groupId>
44
<artifactId>PlayerParticles</artifactId>
5-
<version>6.5</version>
5+
<version>6.6</version>
66
<name>PlayerParticles</name>
77
<url>https://github.com/Esophose/PlayerParticles</url>
88
<description>Display particles around your player and blocks using customized styles and data!</description>
@@ -110,7 +110,7 @@
110110
<dependency>
111111
<groupId>org.spigotmc</groupId>
112112
<artifactId>spigot-api</artifactId>
113-
<version>1.14.3-R0.1-SNAPSHOT</version>
113+
<version>1.15-R0.1-SNAPSHOT</version>
114114
</dependency>
115115
</dependencies>
116116
</project>

src/com/esophose/playerparticles/manager/LangManager.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,7 @@ private static YamlConfiguration configureLangFile(boolean resetLangFiles) {
379379
defaultLangFileNames.add("fr_FR.lang");
380380
defaultLangFileNames.add("vi_VN.lang");
381381
defaultLangFileNames.add("ru_RU.lang");
382+
defaultLangFileNames.add("de_DE.lang");
382383

383384
targetLangFile.getParentFile().mkdir(); // Make sure the directory always exists
384385

src/com/esophose/playerparticles/particles/ParticleEffect.java

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
package com.esophose.playerparticles.particles;
22

3+
import com.esophose.playerparticles.manager.ParticleManager;
4+
import com.esophose.playerparticles.manager.SettingManager.PSetting;
5+
import com.esophose.playerparticles.styles.api.PParticle;
6+
import com.esophose.playerparticles.util.NMSUtil;
37
import java.lang.reflect.Constructor;
48
import java.lang.reflect.Method;
59
import java.util.ArrayList;
@@ -8,20 +12,13 @@
812
import java.util.List;
913
import java.util.Map;
1014
import java.util.Map.Entry;
11-
12-
import com.esophose.playerparticles.util.NMSUtil;
13-
import org.bukkit.Bukkit;
1415
import org.bukkit.Color;
1516
import org.bukkit.Location;
1617
import org.bukkit.Material;
1718
import org.bukkit.Particle;
1819
import org.bukkit.entity.Player;
1920
import org.bukkit.inventory.ItemStack;
2021
import org.bukkit.material.MaterialData;
21-
22-
import com.esophose.playerparticles.manager.ParticleManager;
23-
import com.esophose.playerparticles.manager.SettingManager.PSetting;
24-
import com.esophose.playerparticles.styles.api.PParticle;
2522
import org.bukkit.metadata.MetadataValue;
2623

2724
@SuppressWarnings("deprecation")
@@ -44,6 +41,7 @@ public enum ParticleEffect {
4441
DAMAGE_INDICATOR("DAMAGE_INDICATOR", "DAMAGE_INDICATOR"),
4542
DOLPHIN("DOLPHIN", null),
4643
DRAGON_BREATH("DRAGON_BREATH", "DRAGON_BREATH"),
44+
DRIPPING_HONEY("DRIPPING_HONEY", null),
4745
DRIPPING_LAVA("DRIP_LAVA", "DRIP_LAVA"),
4846
DRIPPING_WATER("DRIP_WATER", "DRIP_WATER"),
4947
DUST("REDSTONE", "REDSTONE", ParticleProperty.COLORABLE),
@@ -55,7 +53,9 @@ public enum ParticleEffect {
5553
EXPLOSION("EXPLOSION_LARGE", "EXPLOSION_LARGE"),
5654
EXPLOSION_EMITTER("EXPLOSION_HUGE", "EXPLOSION_HUGE"),
5755
FALLING_DUST("FALLING_DUST", "FALLING_DUST", ParticleProperty.REQUIRES_MATERIAL_DATA),
56+
FALLING_HONEY("FALLING_HONEY", null),
5857
FALLING_LAVA("FALLING_LAVA", null),
58+
FALLING_NECTAR("FALLING_NECTAR", null),
5959
FALLING_WATER("FALLING_WATER", null),
6060
FIREWORK("FIREWORKS_SPARK", "FIREWORKS_SPARK"),
6161
FISHING("WATER_WAKE", "WATER_WAKE"),
@@ -68,6 +68,7 @@ public enum ParticleEffect {
6868
ITEM("ITEM_CRACK", "ITEM_CRACK", ParticleProperty.REQUIRES_MATERIAL_DATA),
6969
ITEM_SLIME("SLIME", "SLIME"),
7070
ITEM_SNOWBALL("SNOWBALL", "SNOWBALL"),
71+
LANDING_HONEY("LANDING_HONEY", null),
7172
LANDING_LAVA("LANDING_LAVA", null),
7273
LARGE_SMOKE("SMOKE_LARGE", "SMOKE_LARGE"),
7374
LAVA("LAVA", "LAVA"),

src/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,8 @@ gui-icon:
239239
dragon_breath:
240240
- DRAGON_BREATH
241241
- DRAGONS_BREATH
242+
dripping_honey:
243+
- BEE_NEST
242244
dripping_lava:
243245
- LAVA_BUCKET
244246
dripping_water:
@@ -261,8 +263,12 @@ gui-icon:
261263
- TNT
262264
falling_dust:
263265
- SAND
266+
falling_honey:
267+
- HONEY_BOTTLE
264268
falling_lava:
265269
- RED_DYE
270+
falling_nectar:
271+
- HONEYCOMB
266272
falling_water:
267273
- BLUE_DYE
268274
firework:
@@ -292,6 +298,8 @@ gui-icon:
292298
large_smoke:
293299
- COBWEB
294300
- WEB
301+
landing_honey:
302+
- HONEY_BLOCK
295303
landing_lava:
296304
- ORANGE_DYE
297305
lava:

0 commit comments

Comments
 (0)