diff options
author | Hume2 <teratux.mail@gmail.com> | 2018-09-11 11:28:27 +0200 |
---|---|---|
committer | Hume2 <teratux.mail@gmail.com> | 2018-09-11 11:28:27 +0200 |
commit | 3e9a039e62a03aea759a961f757c7a62b2af410a (patch) | |
tree | 43079e9f7ecf316e59cb38fc85104df315bf2bb5 | |
parent | d401328019b0787ad8e87b2c64e705a719856832 (diff) |
Add a nil check for data at init.lua:237HEADorigin/masterorigin/HEADmaster
-rw-r--r-- | init.lua | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -234,9 +234,11 @@ function bike.on_activate(self, staticdata, dtime_s) self.object:set_armor_groups({immortal = 1}) if staticdata ~= "" then local data = minetest.deserialize(staticdata) - self.v = data.v - self.color = data.color - self.alpha = data.alpha + if data ~= nil then + self.v = data.v + self.color = data.color + self.alpha = data.alpha + end end self.object:set_properties({textures=default_tex(self.color, self.alpha)}) self.last_v = self.v |