diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/Resurrection.java b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/Resurrection.java
index bcd97561175aaa41e36b1b29828b0bcc8d3f55f3..0f607be9746dacb81cd214009439276e477ca3fd 100644
--- a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/Resurrection.java
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/Resurrection.java
@@ -37,7 +37,7 @@ public class Resurrection extends L2Effect
 	public Resurrection(Env env, EffectTemplate template)
 	{
 		super(env, template);
-		_power = template.getParameters().getInt("power", 0);
+		_power = template.hasParameters() ? template.getParameters().getInt("power", 0) : 0;
 	}
 	
 	@Override