diff --git a/assets_generation/resources/asm/opcodes.yml b/assets_generation/resources/asm/opcodes.yml index 3ff07ac8..1e0aee7a 100644 --- a/assets_generation/resources/asm/opcodes.yml +++ b/assets_generation/resources/asm/opcodes.yml @@ -1655,6 +1655,7 @@ opcodes: - code: 0xe7 mnemonic: get_servernumber + doc: Returns the index of the player who is the leader of the party. params: - type: reg_tup_ref reg_tup: diff --git a/src/core/data_formats/asm/opcodes.ts b/src/core/data_formats/asm/opcodes.ts index 15877db6..522795d3 100644 --- a/src/core/data_formats/asm/opcodes.ts +++ b/src/core/data_formats/asm/opcodes.ts @@ -3041,18 +3041,9 @@ export const OP_GET_SLOTNUMBER = (OPCODES[0xe6] = new_opcode( export const OP_GET_SERVERNUMBER = (OPCODES[0xe7] = new_opcode( 0xe7, "get_servernumber", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, + "Returns the index of the player who is the leader of the party.", + [new_param({ kind: Kind.RegTupRef, register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)] }, undefined, undefined)], + undefined )); export const OP_SET_EVENTFLAG2 = (OPCODES[0xe8] = new_opcode( 0xe8,