Skip to content

Commit

Permalink
Fix linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
wrefgtzweve committed Dec 10, 2024
1 parent 6e6e24a commit e4c054b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/wire/client/e2_viewrequest_menu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ list.Set("DesktopWindows", "WireExpression2_ViewRequestMenu", {
end

mnu:AddOption("Accept Once", function()
local confirm = Derma_Query(
Derma_Query(
"Are you SURE you want "..line.initiator:Nick().." to have complete access to the code in your chip '"..viewRequests[line.initiator][line.chip].name.."'?\nThis means they are able to steal and redistribute it, so you should only do this if you are certain you can trust them",
"Confirm",
"Yes", function()
Expand All @@ -113,7 +113,7 @@ list.Set("DesktopWindows", "WireExpression2_ViewRequestMenu", {
)
end)
mnu:AddOption("Accept Always", function()
local confirm = Derma_Query(
Derma_Query(
"Are you SURE you want "..line.initiator:Nick().." to have complete access to the code in your chip '"..viewRequests[line.initiator][line.chip].name.."' for the duration the chip entity exists?\nThis means they are able to steal and redistribute it, as well as view any modifications you make to the chip, so you should only do this if you are certain you can trust them",
"Confirm",
"Yes", function()
Expand Down

0 comments on commit e4c054b

Please sign in to comment.