File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
src/main/java/dev/emortal/minestom/lazertag/gun Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 1
1
package dev .emortal .minestom .lazertag .gun ;
2
2
3
3
import dev .emortal .minestom .lazertag .game .LazerTagGame ;
4
- import dev .emortal .minestom .lazertag .gun .guns .AssaultRifle ;
5
- import dev .emortal .minestom .lazertag .gun .guns .Minigun ;
6
- import dev .emortal .minestom .lazertag .gun .guns .Rifle ;
7
- import dev .emortal .minestom .lazertag .gun .guns .Shotgun ;
4
+ import dev .emortal .minestom .lazertag .gun .guns .*;
8
5
import org .jetbrains .annotations .NotNull ;
9
6
import org .jetbrains .annotations .Nullable ;
10
7
@@ -58,12 +55,12 @@ public void register(@NotNull Gun gun) {
58
55
59
56
public void registerGuns () {
60
57
this .register (new AssaultRifle (this .game ));
61
- // this.register(new BeeBlaster(this.game));
62
- // this.register(new BeeMinigun(this.game));
58
+ this .register (new BeeBlaster (this .game ));
59
+ this .register (new BeeMinigun (this .game ));
63
60
this .register (new Rifle (this .game ));
64
- // this.register(new RBG(this.game));
61
+ this .register (new RBG (this .game ));
65
62
this .register (new Minigun (this .game ));
66
63
this .register (new Shotgun (this .game ));
67
- // this.register(new BlockChucker(this.game));
64
+ this .register (new BlockChucker (this .game ));
68
65
}
69
66
}
You can’t perform that action at this time.
0 commit comments