From 5a6113479ec0470eab83788c71874e1d6fa76fdc Mon Sep 17 00:00:00 2001 From: Hector Kio Date: Wed, 5 Apr 2017 19:18:34 -0400 Subject: [PATCH 1/2] Improve initial comment. --- actions/jumper.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/actions/jumper.lua b/actions/jumper.lua index 90c1087..78113e6 100644 --- a/actions/jumper.lua +++ b/actions/jumper.lua @@ -2,8 +2,9 @@ -- This code is entirely based on the Jumper library by Roland Yonaba. -- The modifications are only to make it work under Minetest's secure -- environment. Therefore, the code in this file is under the MIT license --- as the original Jumper library. The original library code can be found --- here: https://github.com/Yonaba/Jumper +-- as the original Jumper library (please see copyright notice below). +-- The original library code can be found here: +-- https://github.com/Yonaba/Jumper -- Modifications are by Hector Franqui (Zorman2000) @@ -1345,4 +1346,4 @@ end -- Returns Pathfinder class Pathfinder._VERSION = _VERSION -Pathfinder._RELEASEDATE = _RELEASEDATE \ No newline at end of file +Pathfinder._RELEASEDATE = _RELEASEDATE From bb5cd7e2c609cfc6fc2774fe592a31317376a1dd Mon Sep 17 00:00:00 2001 From: Hector Kio Date: Thu, 6 Apr 2017 19:32:38 -0400 Subject: [PATCH 2/2] Add version of Jumper library As requested by Roland Yonaba. --- actions/jumper.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/jumper.lua b/actions/jumper.lua index 78113e6..62f65a7 100644 --- a/actions/jumper.lua +++ b/actions/jumper.lua @@ -1,10 +1,10 @@ --------------------------------------------------------------------------------------- --- This code is entirely based on the Jumper library by Roland Yonaba. +-- This code is entirely based on Jumper library 1.8.1 by Roland Yonaba. -- The modifications are only to make it work under Minetest's secure -- environment. Therefore, the code in this file is under the MIT license -- as the original Jumper library (please see copyright notice below). -- The original library code can be found here: --- https://github.com/Yonaba/Jumper +-- https://github.com/Yonaba/Jumper/releases/tag/jumper-1.8.1-1 -- Modifications are by Hector Franqui (Zorman2000)