Skip to content

Commit c72ce99

Browse files
committed
fix typo
1 parent 5a89c5f commit c72ce99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/debugger/godot4/server_controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ export class ServerController {
378378
const className: string = command.parameters[1];
379379
const properties: any[] = command.parameters[2];
380380

381-
// message:inspect_object returns the id as an unsigned 64 bit integer, but it is decoded as a signed 64 bit integer,
381+
// scene:inspect_object returns the id as an unsigned 64 bit integer, but it is decoded as a signed 64 bit integer,
382382
// thus we need to convert it to its equivalent unsigned value here.
383383
if(id < 0)
384384
id = id + BigInt(2) ** BigInt(64);

0 commit comments

Comments
 (0)