1
0
의 미러 https://github.com/luanti-org/luanti.git synced 2026-01-01 18:55:32 +01:00

Add reasons to on_dieplayer and on_hpchange

This commit is contained in:
Andrew Ward
2018-03-28 16:05:18 +01:00
committed by GitHub
부모 2323842dd3
커밋 dfc8198349
14개의 변경된 파일219개의 추가작업 그리고 52개의 파일을 삭제

파일 보기

@@ -9,3 +9,32 @@ assert(pseudo:next() == 22290)
assert(pseudo:next() == 13854)
--
-- HP Change Reasons
--
local expect = nil
minetest.register_on_joinplayer(function(player)
expect = { type = "set_hp", from = "mod" }
player:set_hp(3)
assert(expect == nil)
expect = { a = 234, type = "set_hp", from = "mod" }
player:set_hp(10, { a= 234 })
assert(expect == nil)
expect = { df = 3458973454, type = "fall", from = "mod" }
player:set_hp(10, { type = "fall", df = 3458973454 })
assert(expect == nil)
end)
minetest.register_on_player_hpchange(function(player, hp, reason)
for key, value in pairs(reason) do
assert(expect[key] == value)
end
for key, value in pairs(expect) do
assert(reason[key] == value)
end
expect = nil
end)