Stability update.

Files changed

New locales

  "emergency_cooldown": "Cooldown active, wait before calling again",
  "emergency_sent": "Emergency alert sent"

Config Additions

  {
                  name = '911', -- ✅ You can change this
                  enabled = true,
                  id = '911',   -- ❌ Do not change this
                  props = {
                        help = 'Notify emergency services',
                        params = { {
                              name = 'reason',
                              help = 'Reason for the call',
                              type = 'string',
                              optional = false,
                        } },
                        restricted = true,
                  },
                  jobs_notified = { "ambulance" },
                  notify_cooldown = 60 * 1000, -- 60 seconds
            },
            {
                  name = '311', -- ✅ You can change this
                  enabled = true,
                  id = '311',   -- ❌ Do not change this
                  props = {
                        help = 'Notify police department',
                        params = { {
                              name = 'reason',
                              help = 'Reason for the call',
                              type = 'string',
                              optional = false,
                        } },
                        restricted = true,
                  },
                  jobs_notified = { "police" },
                  notify_cooldown = 60 * 1000, -- 60 seconds
            },