Compare commits

..

No commits in common. "06cde8a57f293ac546b79077e47258b782aba8ce" and "7454d890537c6ecfcec6f52e88c0448b0df8a7fd" have entirely different histories.

1 changed files with 3 additions and 3 deletions

View File

@ -1719,7 +1719,7 @@ public class DamageParse {
Double ddxs = Start.ConfigValuesJson.getJSONObject("ddxs").getDouble(String.valueOf(skillId)); Double ddxs = Start.ConfigValuesJson.getJSONObject("ddxs").getDouble(String.valueOf(skillId));
if (ddxs == null) { if (ddxs == null) {
return new double[]{0.0, 0.0}; ddxs = 1.0;
} }
if (Magnification == 0) { if (Magnification == 0) {
return new double[]{0.0, 0.0}; return new double[]{0.0, 0.0};
@ -1736,7 +1736,7 @@ public class DamageParse {
Double ddxs = Start.ConfigValuesJson.getJSONObject("dbxs").getDouble(String.valueOf(skillId)); Double ddxs = Start.ConfigValuesJson.getJSONObject("dbxs").getDouble(String.valueOf(skillId));
if (ddxs == null) { if (ddxs == null) {
return new double[]{0.0, 0.0}; ddxs = 1.0;
} }
return new double[]{Magnification, ddxs}; return new double[]{Magnification, ddxs};
@ -1750,7 +1750,7 @@ public class DamageParse {
Double qgxs = Start.ConfigValuesJson.getJSONObject("qgxs").getDouble(String.valueOf(skillId)); Double qgxs = Start.ConfigValuesJson.getJSONObject("qgxs").getDouble(String.valueOf(skillId));
if (qgxs == null) { if (qgxs == null) {
return 0; qgxs = 1.0;
} }
if (Magnification > 0) { if (Magnification > 0) {
return (long) ((Magnification * qgxs)); return (long) ((Magnification * qgxs));