开火延迟改为int

This commit is contained in:
Atsuishio 2025-04-19 00:38:09 +08:00 committed by Light_Quanta
parent de14246988
commit 8f3c43b220
No known key found for this signature in database
GPG key ID: 11A39A1B8C890959
3 changed files with 3 additions and 3 deletions

View file

@ -141,7 +141,7 @@ public class ClientEventHandler {
public static double chamberRot = 0;
public static double actionMove = 0;
public static double shootDelay = 0;
public static int shootDelay = 0;
public static double revolverPreTime = 0;
public static double revolverWheelPreTime = 0;

View file

@ -68,6 +68,6 @@ public class DefaultGunData {
public double explosionRadius;
@SerializedName("ShootDelay")
public double shootDelay = 0;
public int shootDelay = 0;
}

View file

@ -277,7 +277,7 @@ public class GunData {
return defaultGunData().burstAmount;
}
public double shootDelay() {
public int shootDelay() {
return defaultGunData().shootDelay;
}