Cleanup comment, whitespace for readability
parent
3509b85a3e
commit
44bb07507d
|
@ -177,7 +177,6 @@ minetest.register_entity("mcl_experience:orb", {
|
||||||
delete_timer = 0,
|
delete_timer = 0,
|
||||||
radius = 4,
|
radius = 4,
|
||||||
|
|
||||||
|
|
||||||
on_activate = function(self, staticdata, dtime_s)
|
on_activate = function(self, staticdata, dtime_s)
|
||||||
self.object:set_velocity(vector.new(
|
self.object:set_velocity(vector.new(
|
||||||
math.random(-2,2)*math.random(),
|
math.random(-2,2)*math.random(),
|
||||||
|
@ -187,9 +186,13 @@ minetest.register_entity("mcl_experience:orb", {
|
||||||
self.object:set_armor_groups({immortal = 1})
|
self.object:set_armor_groups({immortal = 1})
|
||||||
self.object:set_velocity({x = 0, y = 2, z = 0})
|
self.object:set_velocity({x = 0, y = 2, z = 0})
|
||||||
self.object:set_acceleration(gravity)
|
self.object:set_acceleration(gravity)
|
||||||
local xp = tonumber(staticdata) or 0 --assing 0 xp in case the entity was persisted even though it should not have been (static_save = false) this was a minetest bug for a while: https://github.com/minetest/minetest/issues/14420
|
|
||||||
|
-- Assign 0 xp in case the entity was persisted even though it should not have been (static_save = false)
|
||||||
|
-- This was a minetest bug for a while: https://github.com/minetest/minetest/issues/14420
|
||||||
|
local xp = tonumber(staticdata) or 0
|
||||||
self._xp = xp
|
self._xp = xp
|
||||||
size = xp_to_size(xp)
|
size = xp_to_size(xp)
|
||||||
|
|
||||||
self.object:set_properties({
|
self.object:set_properties({
|
||||||
visual_size = {x = size, y = size},
|
visual_size = {x = size, y = size},
|
||||||
glow = 14,
|
glow = 14,
|
||||||
|
|
Loading…
Reference in New Issue