From 134dc3f60f4f480757de9ab0f8cd152d202caf16 Mon Sep 17 00:00:00 2001 From: RoyalBlue <11448698+RoyalBlue1@users.noreply.github.com> Date: Thu, 14 Dec 2023 01:11:20 +0100 Subject: [PATCH] Rename models and model path --- .../winter_holiday_floor.mdl} | Bin .../winter_holiday_tree.mdl} | Bin .../mod/scripts/vscripts/_event_models.gnut | 8 ++++---- 3 files changed, 4 insertions(+), 4 deletions(-) rename Northstar.Custom/mod/models/{northstar/floor.mdl => northstartree/winter_holiday_floor.mdl} (100%) rename Northstar.Custom/mod/models/{northstar/desertlands_holiday_tree.mdl => northstartree/winter_holiday_tree.mdl} (100%) diff --git a/Northstar.Custom/mod/models/northstar/floor.mdl b/Northstar.Custom/mod/models/northstartree/winter_holiday_floor.mdl similarity index 100% rename from Northstar.Custom/mod/models/northstar/floor.mdl rename to Northstar.Custom/mod/models/northstartree/winter_holiday_floor.mdl diff --git a/Northstar.Custom/mod/models/northstar/desertlands_holiday_tree.mdl b/Northstar.Custom/mod/models/northstartree/winter_holiday_tree.mdl similarity index 100% rename from Northstar.Custom/mod/models/northstar/desertlands_holiday_tree.mdl rename to Northstar.Custom/mod/models/northstartree/winter_holiday_tree.mdl diff --git a/Northstar.Custom/mod/scripts/vscripts/_event_models.gnut b/Northstar.Custom/mod/scripts/vscripts/_event_models.gnut index 6a8e9a58c..79a6f074f 100644 --- a/Northstar.Custom/mod/scripts/vscripts/_event_models.gnut +++ b/Northstar.Custom/mod/scripts/vscripts/_event_models.gnut @@ -11,10 +11,10 @@ void function EventModelsInit() if( ( ( month == 12 ) && ( day >= 18 ) ) || ( ( month == 1 ) && ( day <= 6 ) ) ) { - PrecacheModel( $"models/northstar/desertlands_holiday_tree.mdl" ) - PrecacheModel( $"models/northstar/floor.mdl" ) + PrecacheModel( $"models/northstartee/winter_holiday_tree.mdl" ) + PrecacheModel( $"models/northstartree/winter_holiday_floor.mdl" ) - CreatePropDynamic( $"models/northstar/desertlands_holiday_tree.mdl", < -60, 740, 30 >, < 0, 0, 0 >, SOLID_VPHYSICS, 1000 ) - CreatePropDynamic( $"models/northstar/floor.mdl", < -60, 740, 30 >, < 0, 0, 0 >, SOLID_VPHYSICS, 1000 ) + CreatePropDynamic( $"models/northstartree/winter_holiday_tree.mdl", < -60, 740, 30 >, < 0, 0, 0 >, SOLID_VPHYSICS, 1000 ) + CreatePropDynamic( $"models/northstartree/winter_holiday_floor.mdl", < -60, 740, 30 >, < 0, 0, 0 >, SOLID_VPHYSICS, 1000 ) } }