You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
Add missing JRB vanilla level check (#685)
This commit is contained in:
@@ -153,9 +153,13 @@ void spawn_no_exit_star(f32 x, f32 y, f32 z) {
|
||||
void bhv_hidden_red_coin_star_init(void) {
|
||||
struct Object *starObj = NULL;
|
||||
|
||||
#ifdef ENABLE_VANILLA_LEVEL_SPECIFIC_CHECKS
|
||||
if (gCurrCourseNum != COURSE_JRB) {
|
||||
spawn_object(o, MODEL_TRANSPARENT_STAR, bhvRedCoinStarMarker);
|
||||
}
|
||||
#else
|
||||
spawn_object(o, MODEL_TRANSPARENT_STAR, bhvRedCoinStarMarker);
|
||||
#endif
|
||||
|
||||
// check if bparam2 specifies a total number of coins that should spawn the star
|
||||
if (o->oBehParams2ndByte != 0) {
|
||||
|
||||
Reference in New Issue
Block a user