mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 03:08:26 +00:00
[Quest API] Cleanup Signal Methods in Perl/Lua. (#2604)
# Perl - Add `$client->Signal(signal_id)`. # Notes - Some places still had signal as `uint32` versus `int`. - Rename `signal` to `signal_id` where valid so we don't have conflicts.
This commit is contained in:
+1
-1
@@ -901,7 +901,7 @@ void ConsoleSignalCharByName(
|
||||
int update_identifier = 0;
|
||||
CZS->update_type = update_type;
|
||||
CZS->update_identifier = update_identifier;
|
||||
CZS->signal = atoi(args[1].c_str());
|
||||
CZS->signal_id = atoi(args[1].c_str());
|
||||
strn0cpy(CZS->client_name, (char *) args[0].c_str(), 64);
|
||||
zoneserver_list.SendPacket(pack);
|
||||
safe_delete(pack);
|
||||
|
||||
Reference in New Issue
Block a user