Revert "ADD - add in-game phone administration and configuration (#21)" (#24)

This reverts commit edd9677f43.
This commit is contained in:
DerEchteAlec
2026-08-21 21:49:05 +02:00
committed by GitHub
parent 21913b585c
commit 5f8c835685
74 changed files with 331 additions and 12864 deletions
+1 -16
View File
@@ -24,11 +24,7 @@ Bridge = {
},
Debug = function()
end,
Framework = {
HasAdminGroup = function()
return true
end,
},
Framework = {},
Inventory = {
GetResourceName = function()
return "test_inventory"
@@ -41,11 +37,6 @@ Bridge = {
}
Config = {
AdminPanel = {
AdminGroups = { "admin" },
Command = "phoneadmin",
Enabled = true,
},
Phone = {
DevelopmentCommand = false,
DeviceName = "Test Phone",
@@ -91,12 +82,6 @@ function AddEventHandler(name, callback)
event_handlers[name][#event_handlers[name] + 1] = callback
end
function RegisterCommand(name, callback, restricted)
assert(name == "phoneadmin")
assert(type(callback) == "function")
assert(restricted == false)
end
function TriggerClientEvent()
end