diff --git a/Button.gd b/Button.gd index b2aba84..a821142 100644 --- a/Button.gd +++ b/Button.gd @@ -2,4 +2,4 @@ extends Button func _pressed(): $"../Gift".chat($"../LineEdit".text) - $"../LineEdit".text = "" \ No newline at end of file + $"../LineEdit".text = "" diff --git a/Gift.gd b/Gift.gd index 3592dc8..3c882c8 100644 --- a/Gift.gd +++ b/Gift.gd @@ -83,4 +83,4 @@ func greet_me(cmd_info : CommandInfo) -> void: chat("Greetings, " + cmd_info.sender_data.tags["display-name"] + "!") func list(cmd_info : CommandInfo, arg_ary : PoolStringArray) -> void: - chat(arg_ary.join(", ")) \ No newline at end of file + chat(arg_ary.join(", ")) diff --git a/addons/gift/util/cmd_data.gd b/addons/gift/util/cmd_data.gd index 3fc9c20..e630595 100644 --- a/addons/gift/util/cmd_data.gd +++ b/addons/gift/util/cmd_data.gd @@ -13,4 +13,3 @@ func _init(f_ref : FuncRef, perm_lvl : int, mx_args : int, mn_args : int, whr : max_args = mx_args min_args = mn_args where = whr - \ No newline at end of file diff --git a/addons/gift/util/cmd_info.gd b/addons/gift/util/cmd_info.gd index 3134fd6..c74e650 100644 --- a/addons/gift/util/cmd_info.gd +++ b/addons/gift/util/cmd_info.gd @@ -9,4 +9,3 @@ func _init(sndr_dt, cmd, whspr): sender_data = sndr_dt command = cmd whisper = whspr - \ No newline at end of file diff --git a/addons/gift/util/sender_data.gd b/addons/gift/util/sender_data.gd index 8b98508..5f78185 100644 --- a/addons/gift/util/sender_data.gd +++ b/addons/gift/util/sender_data.gd @@ -8,4 +8,4 @@ var tags : Dictionary func _init(usr : String, ch : String, tag_dict : Dictionary): user = usr channel = ch - tags = tag_dict \ No newline at end of file + tags = tag_dict