diff --git a/programs/survival/horse_stats.sc b/programs/survival/horse_stats.sc index c20bbfbe..0ac6c672 100644 --- a/programs/survival/horse_stats.sc +++ b/programs/survival/horse_stats.sc @@ -4,9 +4,9 @@ __command() -> ( target = query(player(), 'trace', 4.5, 'entities'); if (has({'horse', 'donkey', 'mule'}, target~'type'), print(format( - ' Health: ', 'd ' + str(query(target, 'attribute', 'generic.max_health')), - ' \ Speed: ', 'd ' + str(query(target, 'attribute', 'generic.movement_speed')), - ' \ Jump: ', 'd ' + str(query(target, 'attribute', 'generic.jump_strength')) + ' Health: ', 'd ' + str(query(target, 'attribute', 'max_health')), + ' \ Speed: ', 'd ' + str(query(target, 'attribute', 'movement_speed')), + ' \ Jump: ', 'd ' + str(query(target, 'attribute', 'jump_strength')) )) ); null