fixed the one fpr swap preventing link (#99)

This commit is contained in:
Elijah Thomas
2024-11-11 18:21:46 -05:00
committed by GitHub
parent 126e1a9fd7
commit 3e54cc37e3
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -1804,7 +1804,7 @@ config.libs = [
Rel(Matching, "d_t_fairytag", "REL/d/t/d_t_fairytag.cpp"),
Rel(NonMatching, "d_t_fence_synchronizer", "REL/d/t/d_t_fence_synchronizer.cpp"),
Rel(NonMatching, "d_t_gate_to_ground", "REL/d/t/d_t_gate_to_ground.cpp"),
Rel(NonMatching, "d_t_gekotag", "REL/d/t/d_t_gekotag.cpp"),
Rel(Matching, "d_t_gekotag", "REL/d/t/d_t_gekotag.cpp"),
Rel(Matching, "d_t_genki_dws_tgt", "REL/d/t/d_t_genki_dws_tgt.cpp"),
Rel(NonMatching, "d_t_group_summon", "REL/d/t/d_t_group_summon.cpp"),
Rel(NonMatching, "d_t_group_test", "REL/d/t/d_t_group_test.cpp"),
+3 -2
View File
@@ -25,9 +25,10 @@ int dTgGekoTag::create() {
mRefs[i].unlink();
}
// Regswaps
mNoSpawnRadius = getNoSpawnRadius();
if (!mNoSpawnRadius) {
f32 rad = mNoSpawnRadius;
if (!rad) {
mNoSpawnRadius = 100.0f;
}