fix flying

master
Tai @ Flex 2016-12-14 17:47:18 +00:00
parent 04485b54bf
commit 83fb50d173
5 changed files with 9 additions and 9 deletions

View File

@ -60,7 +60,7 @@ local dragondef = {
punch_end = 47,
},
knock_back = 2,
do_custom = step_custom,
do_custom = dmobs.dragon.step_custom,
on_rightclick = dmobs.dragon.on_rc
}
@ -71,6 +71,6 @@ dragondef.attacks_monsters = true
dragondef.on_rightclick = dmobs.dragon.ride
dragondef.do_custom = dmobs.dragon_do_custom
dragondef.do_custom = dmobs.dragon.do_custom
mobs:register_mob("dmobs:dragon_red", dmobs.deepclone(dragondef) )

View File

@ -60,7 +60,7 @@ local dragondef = {
punch_end = 47,
},
knock_back = 2,
do_custom = step_custom,
do_custom = dmobs.dragon.step_custom,
on_rightclick = dmobs.dragon.on_rc
}
@ -72,6 +72,6 @@ dragondef.attacks_monsters = true
dragondef.on_rightclick = dmobs.dragon.ride
dragondef.do_custom = dmobs.dragon_do_custom
dragondef.do_custom = dmobs.dragon.do_custom
mobs:register_mob("dmobs:dragon_black", dmobs.deepclone(dragondef) )

View File

@ -60,7 +60,7 @@ local dragondef = {
punch_end = 47,
},
knock_back = 2,
do_custom = step_custom,
do_custom = dmobs.dragon.step_custom,
on_rightclick = dmobs.dragon.on_rc
}
@ -72,6 +72,6 @@ dragondef.attacks_monsters = true
dragondef.on_rightclick = dmobs.dragon.ride
dragondef.do_custom = dmobs.dragon_do_custom
dragondef.do_custom = dmobs.dragon.do_custom
mobs:register_mob("dmobs:dragon_green", dmobs.deepclone(dragondef) )

View File

@ -60,7 +60,7 @@ local dragondef = {
punch_end = 47,
},
knock_back = 2,
do_custom = step_custom,
do_custom = dmobs.dragon.step_custom,
on_rightclick = dmobs.dragon.on_rc
}
@ -72,6 +72,6 @@ dragondef.attacks_monsters = true
dragondef.on_rightclick = dmobs.dragon.ride
dragondef.do_custom = dmobs.dragon_do_custom
dragondef.do_custom = dmobs.dragon.do_custom
mobs:register_mob("dmobs:dragon_blue", dmobs.deepclone(dragondef) )

View File

@ -68,7 +68,7 @@ gdragon_base.attacks_monsters = true
gdragon_base.on_rightclick = dmobs.dragon.ride
gdragon_base.do_custom = dmobs.dragon_do_custom
gdragon_base.do_custom = dmobs.dragon.do_custom
mobs:register_mob("dmobs:dragon_great_tame", dmobs.deepclone(gdragon_base) )