1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-24 13:47:46 +00:00
sapphire/scripts/chai/skill/skillDef_6.chai

19 lines
223 B
ChaiScript
Raw Normal View History

// Skill Name: Return
// Skill ID: 6
2017-08-10 16:31:48 +02:00
class skillDef_6Def
{
def skillDef_6Def()
{
}
def onFinish( player, target )
{
player.returnToHomepoint();
}
};
GLOBAL skillDef_6 = skillDef_6Def();