aboutsummaryrefslogtreecommitdiff
path: root/gamemode/itemsystem
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2017-05-20 11:37:23 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2017-05-20 11:37:23 -0400
commitc6698dad925e75ffd2ca2f2e30a595d4ce48d240 (patch)
tree226338dc7ee26a6316951554cf953112ba072c76 /gamemode/itemsystem
parent9e0537b0aa417e88a6a61238484ddcef74080ae0 (diff)
downloadartery-c6698dad925e75ffd2ca2f2e30a595d4ce48d240.tar.gz
artery-c6698dad925e75ffd2ca2f2e30a595d4ce48d240.tar.bz2
artery-c6698dad925e75ffd2ca2f2e30a595d4ce48d240.zip
Massive changes I guess
Diffstat (limited to 'gamemode/itemsystem')
-rw-r--r--gamemode/itemsystem/armor/balaclava.lua2
-rw-r--r--gamemode/itemsystem/exampleitem.lua2
-rw-r--r--gamemode/itemsystem/utility/flashlight.lua2
-rw-r--r--gamemode/itemsystem/weapons/knuckledclaw.lua2
-rw-r--r--gamemode/itemsystem/weapons/rustyaxe.lua2
-rw-r--r--gamemode/itemsystem/weapons/seratedknife.lua2
6 files changed, 6 insertions, 6 deletions
diff --git a/gamemode/itemsystem/armor/balaclava.lua b/gamemode/itemsystem/armor/balaclava.lua
index 1ea094b..cd31f97 100644
--- a/gamemode/itemsystem/armor/balaclava.lua
+++ b/gamemode/itemsystem/armor/balaclava.lua
@@ -34,7 +34,7 @@ function item.DoOnPanel(dimagebutton)
dimagebutton:SetImage( "weapons/rustyaxe/rustyaxe.png")
end
-function item.DoOnEqupPanel(dimagebutton)
+function item.DoOnEquipPanel(dimagebutton)
print("called with panel:",panel)
dimagebutton:SetImage( "weapons/rustyaxe/rustyaxe_eq.png")
end
diff --git a/gamemode/itemsystem/exampleitem.lua b/gamemode/itemsystem/exampleitem.lua
index a56151f..3c76971 100644
--- a/gamemode/itemsystem/exampleitem.lua
+++ b/gamemode/itemsystem/exampleitem.lua
@@ -46,7 +46,7 @@ function item.DoOnPanel(dimagebutton)
end
--Optional. Something run once when this item is drawn in an equiped slot
-function item.DoOnEqupPanel(dimagebutton)
+function item.DoOnEquipPanel(dimagebutton)
print("called with panel:",panel)
dimagebutton:SetImage( "weapons/rustyaxe/rustyaxe_eq.png")
end
diff --git a/gamemode/itemsystem/utility/flashlight.lua b/gamemode/itemsystem/utility/flashlight.lua
index 9a87a75..fa1e3c5 100644
--- a/gamemode/itemsystem/utility/flashlight.lua
+++ b/gamemode/itemsystem/utility/flashlight.lua
@@ -35,7 +35,7 @@ function item.DoOnPanel(dimagebutton)
end
--Optional. Something run once when this item is drawn in an equiped slot
-function item.DoOnEqupPanel(dimagebutton)
+function item.DoOnEquipPanel(dimagebutton)
print("called with panel:",panel)
dimagebutton:SetImage( "weapons/rustyaxe/rustyaxe_eq.png")
end
diff --git a/gamemode/itemsystem/weapons/knuckledclaw.lua b/gamemode/itemsystem/weapons/knuckledclaw.lua
index 2f629f6..0665a98 100644
--- a/gamemode/itemsystem/weapons/knuckledclaw.lua
+++ b/gamemode/itemsystem/weapons/knuckledclaw.lua
@@ -33,7 +33,7 @@ function item.DoOnPanel(dimagebutton)
dimagebutton:SetImage( "weapons/rustyaxe/rustyaxe.png")
end
-function item.DoOnEqupPanel(dimagebutton)
+function item.DoOnEquipPanel(dimagebutton)
print("called with panel:",panel)
dimagebutton:SetImage( "weapons/rustyaxe/rustyaxe_eq.png")
end
diff --git a/gamemode/itemsystem/weapons/rustyaxe.lua b/gamemode/itemsystem/weapons/rustyaxe.lua
index 4f613de..359580f 100644
--- a/gamemode/itemsystem/weapons/rustyaxe.lua
+++ b/gamemode/itemsystem/weapons/rustyaxe.lua
@@ -43,7 +43,7 @@ function item.DoOnPanel(dimagebutton)
dimagebutton:SetImage( "weapons/rustyaxe/rustyaxe.png")
end
-function item.DoOnEqupPanel(dimagebutton)
+function item.DoOnEquipPanel(dimagebutton)
print("called with panel:",panel)
dimagebutton:SetImage( "weapons/rustyaxe/rustyaxe_eq.png")
end
diff --git a/gamemode/itemsystem/weapons/seratedknife.lua b/gamemode/itemsystem/weapons/seratedknife.lua
index 7248426..ee116aa 100644
--- a/gamemode/itemsystem/weapons/seratedknife.lua
+++ b/gamemode/itemsystem/weapons/seratedknife.lua
@@ -34,7 +34,7 @@ function item.DoOnPanel(dimagebutton)
dimagebutton:SetImage( "weapons/rustyaxe/rustyaxe.png")
end
-function item.DoOnEqupPanel(dimagebutton)
+function item.DoOnEquipPanel(dimagebutton)
print("called with panel:",panel)
dimagebutton:SetImage( "weapons/rustyaxe/rustyaxe_eq.png")
end