This commit is contained in:
shayoki
2026-06-03 01:25:02 -05:00
parent f601a6ddaf
commit 97a15ec8f8
47 changed files with 286 additions and 156 deletions
@@ -74,10 +74,10 @@
if(message["identifier"] == sender_identifier)
message["sender_name"] = message_name
message["message"] = received_message
message["timestamp"] = station_time_timestamp()
message["timestamp"] = "[server_timestamp(ic_time = TRUE)] (PT: [round_timestamp()]"
return TRUE
message_list.Insert(1, list(list(identifier = sender_identifier, sender_name = received_name, message = received_message, timestamp = station_time_timestamp())))
message_list.Insert(1, list(list(identifier = sender_identifier, sender_name = received_name, message = received_message, timestamp = "[server_timestamp(ic_time = TRUE)] (PT: [round_timestamp()]")))
return TRUE
/// Removes the message_to_remove from the message_list, If the message cannot be found the proc will return FALSE, otherwise it will delete the message_to_remove and return TRUE.