new Regen

This commit is contained in:
2025-02-13 21:25:09 -06:00
parent b9b254f8e8
commit b79c827d81
+1 -1
View File
@@ -1018,7 +1018,7 @@ public class PlayerCombatStats {
public static void healthConsume(PlayerCharacter pc, int amount){
boolean worked = false;
float current = pc.health.get();
float mod = current = amount;
float mod = current - amount;
if(mod <= 0){
pc.killCharacter("water");
return;