Skip to content

Commit 7469589

Browse files
added back them bullies
draw distance makes it so that they are not seen from such distance xd
1 parent 630c9e8 commit 7469589

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

levels/lll/script.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ static const LevelScript script_func_local_3[] = {
6464

6565
static const LevelScript script_func_local_4[] = {
6666
OBJECT(/*model*/ MODEL_NONE, /*pos*/ -3199, 307, 3456, /*angle*/ 0, 0, 0, /*bhvParam*/ 0x00000000, /*bhv*/ bhvMrI),
67-
// OBJECT(/*model*/ MODEL_BULLY_BOSS, /*pos*/ 3372, 2234, -2906, /*angle*/ 0, 0, 0, /*bhvParam*/ 0x01000000, /*bhv*/ bhvBigBullyWithMinions),
67+
OBJECT(/*model*/ MODEL_BULLY_BOSS, /*pos*/ 3372, 2234, -2906, /*angle*/ 0, 0, 0, /*bhvParam*/ 0x01000000, /*bhv*/ bhvBigBullyWithMinions),
6868
OBJECT(/*model*/ MODEL_BULLY, /*pos*/ -3363, 307, -474, /*angle*/ 0, 0, 0, /*bhvParam*/ 0x00000000, /*bhv*/ bhvSmallBully),
6969
OBJECT(/*model*/ MODEL_BULLY, /*pos*/ -20, 307, -3666, /*angle*/ 0, 0, 0, /*bhvParam*/ 0x00000000, /*bhv*/ bhvSmallBully),
7070
// OBJECT(/*model*/ MODEL_BULLY, /*pos*/ 6813, 307, 1613, /*angle*/ 0, 0, 0, /*bhvParam*/ 0x00000000, /*bhv*/ bhvSmallBully),

src/game/behaviors/bully.inc.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ void bhv_bully_loop(void) {
211211
break;
212212
}
213213

214-
set_object_visibility(o, 6000);
214+
set_object_visibility(o, 3000);
215215
}
216216

217217
// sp38 = arg0
@@ -227,9 +227,9 @@ void big_bully_spawn_minion(s32 arg0, s32 arg1, s32 arg2, s16 arg3) {
227227
}
228228

229229
void bhv_big_bully_with_minions_init(void) {
230-
big_bully_spawn_minion(2818, 307, -2758, 0);
231-
big_bully_spawn_minion(3387, 307, -3207, 0);
232-
big_bully_spawn_minion(3826, 307, -2758, 0);
230+
big_bully_spawn_minion(2818, 307, -1758, 0);
231+
big_bully_spawn_minion(3387, 307, -2207, 0);
232+
big_bully_spawn_minion(3826, 307, -1758, 0);
233233

234234
o->header.gfx.node.flags |= GRAPH_RENDER_INVISIBLE;
235235

@@ -241,7 +241,7 @@ void bhv_big_bully_with_minions_init(void) {
241241
void big_bully_spawn_star(void) {
242242
spawn_mist_particles();
243243

244-
spawn_default_star(3241.0f, 300.0f, -3000.0f);
244+
spawn_default_star(3166.0f, 600.0f, -1952.0f);
245245
}
246246

247247
void bhv_big_bully_with_minions_loop(void) {

0 commit comments

Comments
 (0)