From d992e280cc87cb616f991b0b5b2ea2c243ce0c55 Mon Sep 17 00:00:00 2001 From: fgenesis Date: Mon, 22 Apr 2013 01:18:40 +0200 Subject: [PATCH] Oops, forgot to save before push. --- Aquaria/ScriptInterface.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Aquaria/ScriptInterface.cpp b/Aquaria/ScriptInterface.cpp index 7565a66..d5570a7 100644 --- a/Aquaria/ScriptInterface.cpp +++ b/Aquaria/ScriptInterface.cpp @@ -1702,10 +1702,7 @@ luaFunc(hasFormUpgrade) luaReturnBool(dsq->continuity.hasFormUpgrade((FormUpgradeType)lua_tointeger(L, 1))); } -// this used to be castSong(), but that name is already taken by an interface function. -// For compatibility, at the end of the Lua function table this is registered as -// castSong() as well, so that scripts/mods not using the castSong() interface function -// in songs.lua will work as expected. -- FG +// This used to be castSong(), but that name is already taken by an interface function. -- FG luaFunc(singSong) { dsq->continuity.castSong(lua_tonumber(L, 1)); @@ -8366,8 +8363,6 @@ static const struct { {"bone_setColor", l_bone_color}, - {"castSong", l_singSong}, - }; //============================================================================================