mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-26 23:32:43 +00:00
change indentation to tab
This commit is contained in:
parent
c26bf08d90
commit
baef25680f
@ -45,13 +45,6 @@ public class AbilityManager {
|
|||||||
public void onAbilityInvoke(AbilityInvokeEntry invoke) throws Exception {
|
public void onAbilityInvoke(AbilityInvokeEntry invoke) throws Exception {
|
||||||
// Grasscutter.getLogger().info(invoke.getArgumentType() + " (" + invoke.getArgumentTypeValue() + "): " + Utils.bytesToHex(invoke.toByteArray()));
|
// Grasscutter.getLogger().info(invoke.getArgumentType() + " (" + invoke.getArgumentTypeValue() + "): " + Utils.bytesToHex(invoke.toByteArray()));
|
||||||
|
|
||||||
//AbilityIdentifier identifier = AbilityIdentifier.parseFrom(invoke.getAbilityData());
|
|
||||||
//AbilityInvocationsNotify notify = AbilityInvocationsNotify.parseFrom(invoke.getAbilityData());
|
|
||||||
|
|
||||||
|
|
||||||
//Grasscutter.getLogger().info("Ability id: " + Integer.toString(invoke.getEntityId()));
|
|
||||||
//Grasscutter.getLogger().info("invoke count: " + Double.toString(invoke.getTotalTickTime()));
|
|
||||||
|
|
||||||
switch (invoke.getArgumentType()) {
|
switch (invoke.getArgumentType()) {
|
||||||
case ABILITY_META_OVERRIDE_PARAM:
|
case ABILITY_META_OVERRIDE_PARAM:
|
||||||
handleOverrideParam(invoke);
|
handleOverrideParam(invoke);
|
||||||
|
@ -3,14 +3,14 @@ package emu.grasscutter.game.managers.EnergyManager;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class SkillParticleGenerationEntry {
|
public class SkillParticleGenerationEntry {
|
||||||
private int avatarId;
|
private int avatarId;
|
||||||
private List<SkillParticleGenerationInfo> amountList;
|
private List<SkillParticleGenerationInfo> amountList;
|
||||||
|
|
||||||
public int getAvatarId() {
|
public int getAvatarId() {
|
||||||
return this.avatarId;
|
return this.avatarId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<SkillParticleGenerationInfo> getAmountList() {
|
public List<SkillParticleGenerationInfo> getAmountList() {
|
||||||
return this.amountList;
|
return this.amountList;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
package emu.grasscutter.game.managers.EnergyManager;
|
package emu.grasscutter.game.managers.EnergyManager;
|
||||||
|
|
||||||
public class SkillParticleGenerationInfo {
|
public class SkillParticleGenerationInfo {
|
||||||
private int value;
|
private int value;
|
||||||
private int chance;
|
private int chance;
|
||||||
|
|
||||||
public int getValue() {
|
public int getValue() {
|
||||||
return this.value;
|
return this.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getChance() {
|
public int getChance() {
|
||||||
return this.chance;
|
return this.chance;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user