1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-28 15:30:33 +02:00

fix wrong symbol commentaire cause crash

This commit is contained in:
crabman77 2015-06-22 22:04:51 +02:00
parent bc7503f8a8
commit 33b9b0b7ff

View File

@ -76,14 +76,14 @@ mobs:register_arrow("mobs:mese_arrow", {
hit_player = function(self, player)
player:punch(self.object, 1.0, {
full_punch_interval=1.0,
damage_groups = {fleshy=9}, //Modif MFF
damage_groups = {fleshy=9}, --Modif MFF
}, 0)
end,
hit_mob = function(self, player)
player:punch(self.object, 1.0, {
full_punch_interval=1.0,
damage_groups = {fleshy=9}, //Modif MFF
damage_groups = {fleshy=9}, --Modif MFF
}, 0)
end,