diff options
author | glowredman <35727266+glowredman@users.noreply.github.com> | 2023-04-18 21:42:11 +0200 |
---|---|---|
committer | glowredman <35727266+glowredman@users.noreply.github.com> | 2023-04-18 21:42:11 +0200 |
commit | bf2adf120b7db5d6a1de9624fbf26b8ebfa698b6 (patch) | |
tree | 3b83a6d0d1bab18102c66a25d7f2537a49518b98 | |
parent | 0f7fd77be8438727f8f42aed4d8faf17114c5785 (diff) | |
download | GT5-Unofficial-bf2adf120b7db5d6a1de9624fbf26b8ebfa698b6.tar.gz GT5-Unofficial-bf2adf120b7db5d6a1de9624fbf26b8ebfa698b6.tar.bz2 GT5-Unofficial-bf2adf120b7db5d6a1de9624fbf26b8ebfa698b6.zip |
Add default case
-rw-r--r-- | src/main/java/com/github/technus/tectech/compatibility/openmodularturrets/entity/projectiles/projectileEM.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/com/github/technus/tectech/compatibility/openmodularturrets/entity/projectiles/projectileEM.java b/src/main/java/com/github/technus/tectech/compatibility/openmodularturrets/entity/projectiles/projectileEM.java index 0390b2d61e..fdffd31001 100644 --- a/src/main/java/com/github/technus/tectech/compatibility/openmodularturrets/entity/projectiles/projectileEM.java +++ b/src/main/java/com/github/technus/tectech/compatibility/openmodularturrets/entity/projectiles/projectileEM.java @@ -165,6 +165,8 @@ public class projectileEM extends LaserProjectile { true); } break; + default: + break; } } setDead(); |