Paper/Spigot-Server-Patches/0008-Configurable-damage-multiplier-for-PvP-blocking.patch

39 lines
1.8 KiB
Diff
Raw Normal View History

2014-11-28 01:17:45 +00:00
From 55ffa201465306efe4167240fe27b0d1f960f2aa Mon Sep 17 00:00:00 2001
From: Zach Brown <Zbob750@live.com>
2014-11-28 01:17:45 +00:00
Date: Fri, 28 Nov 2014 00:45:14 -0600
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
2014-11-28 01:17:45 +00:00
index 4ef5e01..b382854 100644
--- a/src/main/java/net/minecraft/server/EntityHuman.java
+++ b/src/main/java/net/minecraft/server/EntityHuman.java
2014-11-28 01:17:45 +00:00
@@ -860,7 +860,7 @@ public abstract class EntityHuman extends EntityLiving {
// CraftBukkit end
2014-11-28 01:17:45 +00:00
if (!this.isInvulnerable(damagesource)) {
if (!damagesource.ignoresArmor() && this.isBlocking() && f > 0.0F) {
- f = (1.0F + f) * 0.5F;
2014-08-05 23:45:22 +00:00
+ f = (1.0F + f) * this.world.paperSpigotConfig.playerBlockingDamageMultiplier; // PaperSpigot - Configurable damage multiplier for blocking
}
2014-07-09 03:05:35 +00:00
f = this.applyArmorModifier(damagesource, f);
diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
2014-08-05 23:45:22 +00:00
index f6b0349..5cda463 100644
--- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
+++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
2014-08-05 23:45:22 +00:00
@@ -90,4 +90,11 @@ public class PaperSpigotWorldConfig
squidMaxSpawnHeight = getDouble( "squid-spawn-height.maximum", 63.0D );
2014-08-05 23:45:22 +00:00
log( "Squids will spawn between Y: " + squidMinSpawnHeight + " and Y: " + squidMaxSpawnHeight);
}
+
2014-08-05 23:45:22 +00:00
+ public float playerBlockingDamageMultiplier;
+ private void playerBlockingDamageMultiplier()
+ {
+ playerBlockingDamageMultiplier = getFloat( "player-blocking-damage-multiplier", 0.5F );
2014-08-05 23:45:22 +00:00
+ log( "Player blocking damage multiplier set to " + playerBlockingDamageMultiplier);
+ }
}
--
1.9.1