Skip to content

Commit

Permalink
Merge pull request #560 from bitpredator/dev
Browse files Browse the repository at this point in the history
fix: removed unused variables
  • Loading branch information
bitpredator authored Nov 17, 2023
2 parents 0fde1e4 + b5e6bf3 commit 7051ba7
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 38 deletions.
6 changes: 5 additions & 1 deletion .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,8 @@
17. [esx_addoninventory]: delete: removed the .editorconfig file @bitpredator
18. [ox_inventory]: fix: corrected the weight of the items @bitpredator
19. [esx_identity]: chore: update the code version and improve the formatting @bitpredator
20. [esx_addons]: fix: replace bpt_realisticvehicle with esx_RealisticVehicleFailure to fix repair issues @bitpredator
20. [esx_addons]: fix: replace bpt_realisticvehicle with esx_RealisticVehicleFailure to fix repair issues @bitpredator
21. [bpt_streetfight]: chore: clean up the code @bitpredator
22. [bpt_farmer]: chore: clean up the code @bitpredator
23. [bpt_teleport]: chore: clean up the code @bitpredator
24. [mythic_notify]: fix: removed unused variables @bitpredator
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ local Keys = {
["NENTER"] = 201, ["N4"] = 108, ["N5"] = 60, ["N6"] = 107, ["N+"] = 96, ["N-"] = 97, ["N7"] = 117, ["N8"] = 61, ["N9"] = 118
}

ESX = nil
local incollect = false

ESX = exports["es_extended"]:getSharedObject()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ESX = nil
ESX = exports["es_extended"]:getSharedObject()

-- collection potato
RegisterServerEvent('farmer:collectionpotato')
AddEventHandler('farmer:collectionpotato', function()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
ESX = nil
local betAmount = 0
local fightStatus = false
local STATUS_INITIAL = false
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
ESX = nil

local bluePlayerReady = false
local redPlayerReady = false
local fight = {}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
ESX = nil
CreateThread(function()
ESX = exports["es_extended"]:getSharedObject()
end)
ESX = exports["es_extended"]:getSharedObject()

CreateThread(function()
while true do
Expand Down
24 changes: 0 additions & 24 deletions server-data/resources/[esx]/mythic_notify/client/depracated.lua

This file was deleted.

8 changes: 4 additions & 4 deletions server-data/resources/[esx]/mythic_notify/fxmanifest.lua
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
fx_version 'adamant'
game 'gta5'
name 'Mythic Framework Notification System'
author 'Alzar - https://github.com/Alzar'
version 'v1.1.0'

version '1.0.0'

ui_page {
'html/ui.html',
}

files {
'html/ui.html',
'html/js/app.js',
'html/js/app.js',
'html/css/style.css',
}

Expand All @@ -22,4 +22,4 @@ exports {
'SendAlert',
'SendUniqueAlert',
'PersistentAlert',
}
}

0 comments on commit 7051ba7

Please sign in to comment.