From 6b886edad171b4f37d37a4ec9104f964b1c719e9 Mon Sep 17 00:00:00 2001 From: Panquesito7 Date: Sun, 21 Jun 2020 13:28:17 -0500 Subject: [PATCH] Add license notice on `init.lua` --- init.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index eacf733..ea35397 100644 --- a/init.lua +++ b/init.lua @@ -1,8 +1,13 @@ --[[ +Copyright (C) 2020 squiddible and contributors +This project is licensed under the MIT license. + +See https://mit-license.org/ for more information. + +-------------------------------------------------- Lowers gravity the higher (and lower) you get above (or below) sea level, max gravity at sea level. - ]]-- local action_timer = 0 @@ -17,7 +22,6 @@ local gravity_update = function() end end - local function gravity_globaltimer(dtime) action_timer = action_timer + dtime @@ -28,4 +32,3 @@ local function gravity_globaltimer(dtime) end minetest.register_globalstep(gravity_globaltimer) -