summaryrefslogtreecommitdiffstats
path: root/src/game-server/trigger.h
Commit message (Collapse)AuthorAgeFilesLines
* Removed the last direct call to global script functionThorbjørn Lindeijer2012-03-031-3/+2
| | | | | | | | | | | | The ScriptAction of the TriggerArea (which can be created by mana.trigger_create) was still using a named global function for its callback. Now it also uses a reference to a script function. Since it was the last occurrence of a call to a global script function, I've also removed the Script::prepare(std::string) overload. Reviewed-by: Erik Schilling Mantis-issue: 299
* Removed the superfluous point struct.Yohann Ferreira2011-01-091-1/+1
| | | | | | | | It was too close from the Position class and it leads to making the server handle one or another type through the code. Still bugged me many times while making changes. Reviewed-by: Jaxad.
* Renamed .hpp files into .h for consistency.Yohann Ferreira2010-11-141-0/+82
Also added an header to the autoattack.{h,cpp} files. Big but trivial fix.