Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

Commit

Permalink
0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hsanger committed Apr 3, 2023
1 parent d87833d commit 9add911
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "survivreloaded",
"version": "0.4.1",
"version": "0.5.0",
"description": "A community-made resurrection of the defunct online game surviv.io.",
"main": "dist/server.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/game/bullet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ export class Bullet {
this.body = game.world.createBody({
type: "dynamic",
position,
fixedRotation: true
fixedRotation: true,
bullet: true
});
this.body.setBullet(true);
this.body.createFixture({
shape: Circle(0),
friction: 0.0,
Expand Down
2 changes: 1 addition & 1 deletion src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ process.on("SIGINT", () => {
process.exit();
});

log("Surviv Reloaded Server v0.4.1");
log("Surviv Reloaded Server v0.5.0");
app.listen(Config.host, Config.port, () => {
// noinspection HttpUrlsUsage
log(`Listening on ${Config.host}:${Config.port}`);
Expand Down

0 comments on commit 9add911

Please sign in to comment.