diff --git a/feely_pona.cpp b/feely_pona.cpp index 476e111..04aa210 100644 --- a/feely_pona.cpp +++ b/feely_pona.cpp @@ -2026,7 +2026,7 @@ void FP_Update(TELY_Platform *platform, FP_Game *game, TELY_PlatformInput *input } // NOTE: Mob spawner ======================================================================= - if (entity->type == FP_EntityType_MobSpawner && 0) { + if (entity->type == FP_EntityType_MobSpawner) { // NOTE: Flush any spawn entities that are dead for (FP_SentinelListLink *link = nullptr; FP_SentinelList_Iterate(&entity->spawn_list, &link); ) { FP_GameEntity *spawned_entity = FP_Game_GetEntity(game, link->data); diff --git a/feely_pona.h b/feely_pona.h index 0c5f8fb..f9c43e0 100644 --- a/feely_pona.h +++ b/feely_pona.h @@ -149,5 +149,5 @@ g_anim_names; #if defined(DQN_PLATFORM_EMSCRIPTEN) #define FP_DEVELOPER_MODE 0 #else -#define FP_DEVELOPER_MODE 0 +#define FP_DEVELOPER_MODE 1 #endif