Skip to content

Commit

Permalink
Add gun speed stat and new gunslinger class (#136)
Browse files Browse the repository at this point in the history
* Add gun speed stat and new gunslinger class

* Remove extra logs
  • Loading branch information
beverly-hills-money-gangster authored Dec 11, 2024
1 parent 1a6f42d commit 6038ecf
Show file tree
Hide file tree
Showing 49 changed files with 441 additions and 338 deletions.
6 changes: 3 additions & 3 deletions net-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>com.beverly.hills.money.gang</groupId>
<artifactId>daikombat-server</artifactId>
<version>16.0.0</version>
<version>17.0.0</version>
</parent>

<artifactId>net-client</artifactId>
<version>16.0.0</version>
<version>17.0.0</version>

<properties>
<maven.compiler.source>14</maven.compiler.source>
Expand Down Expand Up @@ -81,7 +81,7 @@
<dependency>
<groupId>com.beverly.hills.money.gang</groupId>
<artifactId>schema</artifactId>
<version>16.0.0</version>
<version>17.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.maven/maven-model -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void run() {
gameConnection.write(JoinGameCommand.newBuilder()
.setPlayerName(Thread.currentThread().getName())
.setGameId(GAME_ID_TO_CONNECT)
.setPlayerClass(PlayerClass.COMMONER)
.setPlayerClass(PlayerClass.WARRIOR)
.setSkin(PlayerSkinColor.GREEN)
.setVersion(ClientConfig.VERSION).build());
waitUntilQueueNonEmpty(gameConnection.getResponse());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ public void write(ChannelHandlerContext ctx, Object msg, ChannelPromise promise)

@Override
public void channelActive(ChannelHandlerContext ctx) throws Exception {
LOG.info("Channel is active. Options {}", ctx.channel().config().getOptions());
super.channelActive(ctx);
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>com.beverly.hills.money.gang</groupId>
<artifactId>daikombat-server</artifactId>
<version>16.0.0</version>
<version>17.0.0</version>
<packaging>pom</packaging>

<modules>
Expand Down
4 changes: 2 additions & 2 deletions schema/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>com.beverly.hills.money.gang</groupId>
<artifactId>daikombat-server</artifactId>
<version>16.0.0</version>
<version>17.0.0</version>
</parent>

<artifactId>schema</artifactId>
<version>16.0.0</version>
<version>17.0.0</version>

<properties>
<maven.compiler.source>14</maven.compiler.source>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 6038ecf

Please sign in to comment.