XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

SpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 1 Star 0
返回提交历史

XFEstudio/SpaceNinjaServer

chore: remove leftover console.log in inventoryController (#569)

1b95186a
Sainan <sainan@calamity.inc>
提交于

代码差异

1 个文件 +0 -1
Modified src/controllers/api/inventoryController.ts +0 -1
@@ -31,7 +31,6 @@ const inventoryController: RequestHandler = async (request, response) => {
31 31
32 32 //TODO: make a function that converts from database representation to client
33 33 const inventoryJSON: IInventoryDatabase = inventory.toJSON();
34 console.log(inventoryJSON.Ships);
35 34
36 35 const inventoryResponse = toInventoryResponse(inventoryJSON);
37 36