From 6b14ca07759eb0825e32357bdf4eede3836dd828 Mon Sep 17 00:00:00 2001 From: David Cernat Date: Thu, 19 Jan 2017 18:30:31 +0200 Subject: [PATCH] Finish renaming of script functions for sending items and spells --- apps/openmw-mp/Script/Functions/Items.hpp | 2 +- apps/openmw-mp/Script/Functions/Spells.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/openmw-mp/Script/Functions/Items.hpp b/apps/openmw-mp/Script/Functions/Items.hpp index a4280dc6b..86242d2fc 100644 --- a/apps/openmw-mp/Script/Functions/Items.hpp +++ b/apps/openmw-mp/Script/Functions/Items.hpp @@ -27,7 +27,7 @@ {"GetInventoryItemHealth", ItemFunctions::GetInventoryItemHealth},\ \ {"SendEquipment", ItemFunctions::SendEquipment},\ - {"SendInventory", ItemFunctions::SendItems} + {"SendItems", ItemFunctions::SendItems} class ItemFunctions { diff --git a/apps/openmw-mp/Script/Functions/Spells.hpp b/apps/openmw-mp/Script/Functions/Spells.hpp index 16afabde8..022074d1f 100644 --- a/apps/openmw-mp/Script/Functions/Spells.hpp +++ b/apps/openmw-mp/Script/Functions/Spells.hpp @@ -11,7 +11,7 @@ {"HasSpell", SpellFunctions::HasSpell},\ {"GetSpellId", SpellFunctions::GetSpellId},\ \ - {"SendSpellbook", SpellFunctions::SendSpells} + {"SendSpells", SpellFunctions::SendSpells} class SpellFunctions {