From 7e180557484d871ebb69e721aeae53795f86d100 Mon Sep 17 00:00:00 2001 From: theFox6 Date: Wed, 15 Apr 2020 12:42:04 +0200 Subject: [PATCH] fix weather not being clientside --- weather/api.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weather/api.lua b/weather/api.lua index 675c61a..47b8c71 100644 --- a/weather/api.lua +++ b/weather/api.lua @@ -170,7 +170,7 @@ local function weather_step() minsize=current_downfall.size, maxsize=current_downfall.size, collisiondetection=true, collision_removal=true, vertical=true, - texture=current_downfall.texture, player=player:get_player_name() + texture=current_downfall.texture, playername=player:get_player_name() }) local downfall_origin = vector.divide(vector.add(minp,maxp),2) @@ -203,4 +203,4 @@ minetest.register_globalstep(function() end weather_step() -end) \ No newline at end of file +end)