fix wrong symbol commentaire cause crash

This commit is contained in:
crabman77 2015-06-22 22:04:51 +02:00
parent bc7503f8a8
commit 33b9b0b7ff
1 changed files with 2 additions and 2 deletions

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,