Skip to content

Commit ada642d

Browse files
committed
fix: use float for size
1 parent dc7c7ee commit ada642d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

generated/ares_pb.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,6 @@ export const Entity = /*@__PURE__*/ proto3.makeMessageType(
256256
{ no: 2, name: 'name', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
257257
{ no: 4, name: 'type', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
258258
{ no: 5, name: 'level', kind: 'scalar', T: 13 /* ScalarType.UINT32 */ },
259-
{ no: 6, name: 'size', kind: 'scalar', T: 13 /* ScalarType.UINT32 */ },
259+
{ no: 6, name: 'size', kind: 'scalar', T: 2 /* ScalarType.FLOAT */ },
260260
],
261261
)

proto/ares.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ message Entity {
8989
string name = 2;
9090
string type = 4;
9191
uint32 level = 5;
92-
uint32 size = 6;
92+
float size = 6;
9393
}
9494

9595
enum Classe {

0 commit comments

Comments
 (0)