From b34731986ab9033bbe7cc490001c352eea32786a Mon Sep 17 00:00:00 2001 From: Noah Date: Tue, 12 Mar 2024 13:39:29 -0500 Subject: [PATCH] Add cope.level variable, change cope.level() -> cope.get_level() --- cope.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cope.lua b/cope.lua index 411dea5..581fc3a 100644 --- a/cope.lua +++ b/cope.lua @@ -1,7 +1,7 @@ cope = {} - -function cope.level() - print('Coping level = High') +cope.level = "High" +function cope.get_level() + reutnr cope.level end return cope