mirror of
				https://codeberg.org/tenplus1/mobs_redo.git
				synced 2025-10-31 15:45:22 +01:00 
			
		
		
		
	add damage_per_second nil check
This commit is contained in:
		
							
								
								
									
										4
									
								
								api.lua
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								api.lua
									
									
									
									
									
								
							| @@ -25,7 +25,7 @@ local use_cmi = minetest.global_exists("cmi") | ||||
|  | ||||
| mobs = { | ||||
| 	mod = "redo", | ||||
| 	version = "20230609", | ||||
| 	version = "20230613", | ||||
| 	intllib = S, | ||||
| 	invis = minetest.global_exists("invisibility") and invisibility or {} | ||||
| } | ||||
| @@ -1141,7 +1141,7 @@ function mob_class:do_env_damage() | ||||
| 		end | ||||
|  | ||||
| 	-- damage_per_second node check (not fire and lava) | ||||
| 	elseif nodef.damage_per_second ~= 0 | ||||
| 	elseif nodef.damage_per_second and nodef.damage_per_second ~= 0 | ||||
| 	and nodef.groups.lava == nil and nodef.groups.fire == nil then | ||||
|  | ||||
| 		self.health = self.health - nodef.damage_per_second | ||||
|   | ||||
		Reference in New Issue
	
	Block a user