Skip to content

Commit

Permalink
Changed ITEM.functions.EquipUn tip
Browse files Browse the repository at this point in the history
  • Loading branch information
Fer3D authored and alexgrist committed Oct 5, 2024
1 parent cde2f3a commit 665f993
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gamemode/items/base/sh_outfit.lua
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ end)

ITEM.functions.EquipUn = { -- sorry, for name order.
name = "unequip",
tip = "equipTip",
tip = "unequipTip",
icon = "icon16/cross.png",
OnRun = function(item)
item:RemoveOutfit(item.player)
Expand Down
2 changes: 1 addition & 1 deletion gamemode/items/base/sh_pacoutfit.lua
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ end)
-- On player uneqipped the item, Removes a weapon from the player and keep the ammo in the item.
ITEM.functions.EquipUn = { -- sorry, for name order.
name = "unequip",
tip = "equipTip",
tip = "unequipTip",
icon = "icon16/cross.png",
OnRun = function(item)
item:RemovePart(item.player)
Expand Down
2 changes: 1 addition & 1 deletion gamemode/items/base/sh_weapons.lua
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ end)
-- On player uneqipped the item, Removes a weapon from the player and keep the ammo in the item.
ITEM.functions.EquipUn = { -- sorry, for name order.
name = "unequip",
tip = "equipTip",
tip = "unequipTip",
icon = "icon16/cross.png",
OnRun = function(item)
item:Unequip(item.player, true)
Expand Down

0 comments on commit 665f993

Please sign in to comment.