galaxyBETA
explore
· ·
log in

log me in

log in forgot password

don't have an account?

sign up

preferences

theme picker site-wide filters

deleted

The deleted response is requested by the delete action and contains information about the action’s deletion request.

responding action

properties

  • error (boolean)
    Whether the action encountered an error.

  • message (string?)
    Present when error is true, tells the reason why the action encountered an error. Valid values are:

    • "no_account": The player was logged out.
    • "invalid_slot": The slot value was invalid.
    • "server_error": The game couldn’t connect to Galaxy’s servers.
  • slot (number)
    The save slot number.

examples

If the deletion was successful:

{
	type: "deleted",
	error: false,
	slot: 0,
}

If it wasn’t:

{
	type: "deleted",
	error: true,
	message: "no_account",
	slot: 0,
}