SteamWar/MissileWars
Archiviert
13
0

Add json Config Idea

Fix ArrowListener explosive yield
Dieser Commit ist enthalten in:
jojo 2020-10-24 12:51:54 +02:00
Ursprung 3b817b8f2b
Commit 4039c179ed
2 geänderte Dateien mit 17 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -0,0 +1,16 @@
{
"type": "ARROW",
"name": "§ePfeil",
"lore": [],
"amount": 3,
"EVENT.onThrow": [
],
"EVENT.onHit": [
{"type": "delay", "time": 0},
{"type": "paste", "schem": ""}
],
"EVENT.onClick": [
]
}

Datei anzeigen

@ -46,7 +46,7 @@ public class ArrowListener extends BasicListener {
if (location == null) return; if (location == null) return;
TNTPrimed tnt = e.getEntity().getWorld().spawn(location, TNTPrimed.class); TNTPrimed tnt = e.getEntity().getWorld().spawn(location, TNTPrimed.class);
tnt.setYield(1.0F); tnt.setYield(2.0F);
tnt.setIsIncendiary(false); tnt.setIsIncendiary(false);
tnt.setFuseTicks(0); tnt.setFuseTicks(0);
} }