Removed the strange ACK function concept (#7404)

Cleans up packet database a little more.
Turned some more packets into structs.

Co-authored-by: Vincent Stumpf <vincents.995@gmail.com>
This commit is contained in:
Lemongrass3110
2022-11-17 22:09:12 +01:00
committed by GitHub
parent cc5770eda4
commit eb8587f5b5
11 changed files with 259 additions and 338 deletions

View File

@@ -4967,7 +4967,7 @@ BUILDIN_FUNC(clear)
if (!script_rid2sd(sd))
return SCRIPT_CMD_FAILURE;
clif_scriptclear(sd, st->oid);
clif_scriptclear( *sd, st->oid );
return SCRIPT_CMD_SUCCESS;
}
@@ -23610,7 +23610,7 @@ BUILDIN_FUNC(mergeitem) {
if (!script_charid2sd(2, sd))
return SCRIPT_CMD_FAILURE;
clif_merge_item_open(sd);
clif_merge_item_open( *sd );
return SCRIPT_CMD_SUCCESS;
}