From a36e231883d595bcba91d44e19f24b31eaf0431b Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Sun, 26 Feb 2012 23:28:43 +0100 Subject: A bunch of cleanups to example Lua scripts Mostly removed bulky copyright headers and fixed indentation and line length. Reviewed-by: Yohann Ferreira Reviewed-by: Erik Schilling --- example/scripts/items/candy.lua | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) (limited to 'example/scripts/items/candy.lua') diff --git a/example/scripts/items/candy.lua b/example/scripts/items/candy.lua index 5ab7c9a..a9c59fe 100644 --- a/example/scripts/items/candy.lua +++ b/example/scripts/items/candy.lua @@ -1,17 +1,13 @@ -------------------------------------------------------------- --- Example use script. Makes the player character say -- --- "*munch*munch*munch*" when using this item. -- --- The HP regeneration effect is handled separately based -- --- on the heal value in items.xml -- ----------------------------------------------------------------------------------- --- Copyright 2009 The Mana World Development Team -- --- -- --- This file is part of The Mana World. -- --- -- --- The Mana World is free software; you can redistribute it and/or modify it -- --- under the terms of the GNU General Public License as published by the Free -- --- Software Foundation; either version 2 of the License, or any later version. -- ----------------------------------------------------------------------------------- +--[[ + + Example item script. + + Makes the player character say "*munch*munch*munch*" when using this item. + The HP regeneration effect is handled separately based on the heal value in + items.xml. + +--]] + function use_candy(user) - mana.being_say(user, "*munch*munch*munch*") + mana.being_say(user, "*munch*munch*munch*") end -- cgit