Skip to content

Commit

Permalink
#46 fix: remove debug msg
Browse files Browse the repository at this point in the history
  • Loading branch information
L3P3 committed Jul 24, 2024
1 parent 2552c8a commit 3e5647c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "minicraft",
"version": "0.10.6",
"version": "0.10.7",
"description": "voxel-based 3d game, written in javascript",
"homepage": "https://l3p3.de/minicraft",
"repository": {
Expand Down
3 changes: 1 addition & 2 deletions src/game/c_game.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ import {
game_create,
game_destroy,
game_key,
game_message_print,
game_mouse_catch,
game_mouse_move_menu,
game_mouse_move_player,
Expand Down Expand Up @@ -155,7 +154,7 @@ export default function Game({
(model.rotate_last_h | model.rotate_last_v) &&
model.rotate_last_time > time_now - 100
) {
game_message_print(model, `move back ${Math.round(model.rotate_last_h*100)}% ${Math.round(model.rotate_last_v*100)}%`);
//game_message_print(model, `move back ${Math.round(model.rotate_last_h*100)}% ${Math.round(model.rotate_last_v*100)}%`);
player_rotate(
model.player,
-model.rotate_last_h,
Expand Down

0 comments on commit 3e5647c

Please sign in to comment.