Configurable damage multiplier for PvP blocking
This commit is contained in:
parent
6ea3c4987f
commit
0ea4034391
@ -0,0 +1,46 @@
|
|||||||
|
From d8ac73e9000b772e48821b4c1aba04fec359e7d5 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Zach Brown <Zbob750@live.com>
|
||||||
|
Date: Mon, 19 May 2014 21:13:31 -0500
|
||||||
|
Subject: [PATCH] Configurable damage multiplier for PvP blocking
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/EntityHuman.java b/src/main/java/net/minecraft/server/EntityHuman.java
|
||||||
|
index c3a0dc3..f50dcf5 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/EntityHuman.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/EntityHuman.java
|
||||||
|
@@ -20,6 +20,8 @@ import org.bukkit.event.player.PlayerDropItemEvent;
|
||||||
|
import org.bukkit.event.player.PlayerItemConsumeEvent;
|
||||||
|
// CraftBukkit end
|
||||||
|
|
||||||
|
+import org.spigotmc.SpigotWorldConfig; // PaperSpigot
|
||||||
|
+
|
||||||
|
public abstract class EntityHuman extends EntityLiving implements ICommandListener {
|
||||||
|
|
||||||
|
public PlayerInventory inventory = new PlayerInventory(this);
|
||||||
|
@@ -807,7 +809,7 @@ public abstract class EntityHuman extends EntityLiving implements ICommandListen
|
||||||
|
protected void d(DamageSource damagesource, float f) {
|
||||||
|
if (!this.isInvulnerable()) {
|
||||||
|
if (!damagesource.ignoresArmor() && this.isBlocking() && f > 0.0F) {
|
||||||
|
- f = (1.0F + f) * 0.5F;
|
||||||
|
+ f = (1.0F + f) * SpigotWorldConfig.playerBlockingDamageMultiplier; // PaperSpigot - Configurable damage multiplier for players blocking
|
||||||
|
}
|
||||||
|
|
||||||
|
f = this.b(damagesource, f);
|
||||||
|
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
||||||
|
index c340fb3..a2947d6 100644
|
||||||
|
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
||||||
|
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
||||||
|
@@ -340,4 +340,10 @@ public class SpigotWorldConfig
|
||||||
|
{
|
||||||
|
witherSpawnSoundRadius = getInt( "wither-spawn-sound-radius", 0 );
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ public static float playerBlockingDamageMultiplier;
|
||||||
|
+ private void setPlayerBlockingDamageMultiplier()
|
||||||
|
+ {
|
||||||
|
+ playerBlockingDamageMultiplier = getFloat( "player-blocking-damage-multiplier", 0.5F );
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
--
|
||||||
|
1.9.1
|
||||||
|
|
Loading…
Reference in New Issue
Block a user