Jump to content

Batsphinx

The Indie Stone
  • Posts

    1863
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Batsphinx got a reaction from RickL in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  2. Like
    Batsphinx got a reaction from El Dmitrio in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  3. Like
    Batsphinx got a reaction from SonGurke in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  4. pillow
    Batsphinx reacted to nasKo in IWBUMS 41.46 released   
    ( ͡° ͜ʖ ͡°)
  5. Spiffo
    Batsphinx got a reaction from trombonaught in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  6. Like
    Batsphinx got a reaction from Dax in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  7. Like
    Batsphinx got a reaction from Trip in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  8. Like
    Batsphinx got a reaction from crossed in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  9. Like
    Batsphinx got a reaction from Sedgwick in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  10. Like
    Batsphinx got a reaction from Bloodhawk in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  11. Like
    Batsphinx got a reaction from Optimism in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  12. Spiffo
    Batsphinx got a reaction from GoodOldLeon in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  13. Like
    Batsphinx got a reaction from Caturday in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  14. Like
    Batsphinx got a reaction from Tails in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  15. Spiffo
    Batsphinx got a reaction from geronimo553 in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  16. Spiffo
    Batsphinx got a reaction from Geras in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  17. Like
    Batsphinx got a reaction from xXMoksXx in IWBUMS 41.46 released   
    41.46

    NEW

    PERSISTENT ZED OUTFITS
    - Zombie appearance is now mostly preserved when reloading.
    - Added Zombie.Outfit.Random debug option to disable persistent outfits and choose random ones when zombies are loaded.
    - Added AttachedWeaponDefinitions class to avoid parsing the Lua table every time a zombie spawns.
    - Rewrote ZombiesZoneDefinition to avoid parsing the Lua table each time a zombie spawns.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - DebugChunkState displays all the zones at a location.
    - Moved client/Definitions to shared/Definitions. server/recipecode.lua uses ClothingRecipesDefinitions.

    ADDED TRAILERS
    1) If in debug use addVehicle("Base.Trailer") to spawn a trailer.
    2) Park a vehicle with it's rear end near the front of the trailer.
    3) Looking at either the vehicle or the trailer, use the vehicle radial menu and choose "Attach Trailer" (the plus-sign icon).
    Vehicles should have an attachment named "trailer" that is aligned with the same attachment on the trailer itself.
    Vehicles without this attachment will connect somewhere on the rear of the vehicle.
    Editing attachments on vehicles is a new thing in the vehicle editor.

    - Added support for multiple collision shapes on vehicles. This is to support the trailer hitch extending forwards of the trailer's body. Shapes must be added in the vehicle's script.  They can be edited in the vehicle editor under the new "Physics" section.
     A maximum of 10 shapes is supported, minus one for physicsChassisShape.
    - Updated the vehicle blood and damage textures. Damage and rust textures are applied to the trailer. The blood texture doesn't currently appear, however.
    - Simulate a rope when towing cars: breaking too much at full speed and your towing car will bump into you.
    - Added uncovered trailer Base.Trailer.  Base.TrailerCover is the covered version.
     The uncovered trailer FBX is missing the second UV channel.
    - Trailer brake lights will come on when the vehicle towing it's brake lights are on.
    - Added 4-wheeled advertisement trailer.
    - Added 'world' attachments to some weapon models so they are positioned better when on the ground.
    - Added new advertising trailers. The "Set Script" vehicle debug-menu command picks a random skin.
    - Added trailer car crash story.

    NEW ZED STORIES
    - Sometimes in forests, at the beach or next to lakes, you'll find people who were zombified doing different activities.
    - Beach party, fisherman trips, forest campement...
    - BBQ party
    - Sexy time (!)
    - Hunter camp
    - Trapper camp
    - More!

    GENERAL
    - Added beer can & beer bottle item.
    - Recipe tooltips now display available items in white text above unavailable items in grey text.
    - Stop emote animations when the "Cancel Action" key or the controller B button is pressed.
    - Added more gun attachments models, fixed missing ones.
    - Added ammo straps as clothing item. Can be worn, exist with shells or bullets, can increase reload speed (shells for shotgun/bullets for the rest).
    - Added possible bullet vest on police outfit.
    - Added several new hair cuts
    - Added new beard styles.
    Added a HairOutfitDefinitions.lua definition file:
    - Allow to spawn some haircut only on specific outfit.
    - Force some haircut on some outfit (ZombiesZoneDefinition.lua take precedence over it)
    - Added some outfits for Zed Stories.
    - Implemented new hats/eye patch (icons, functionality etc).
    - Added the JOIN_IDENTICAL_VERTICES option when loading models.  This can greatly reduce the number of vertices in a model.
    - Updated translations.

    BALANCE

    - Damage to car parts from melee weapons now made more accurate to type of weapon
    - Changed damage from hitting zombies with car: speed exponentially increases damage. Also made attempts to stop sprinters hammering on the rear of car and destroying it too fast.
    - Whiskey bottle with water weight now more in keeping with whiskey bottle weight
    - Decreased the gain in drunkeness from drinking beer bottles/cans vs. spirits
    - Made alcohol->drunkeness slightly more potent when character has an empty stomach
    - Disassembling Lamps now gives a Lightbulb
    - Log Stacks recipes to always use 2 Ropes, instead of 1 Rope per Log
    - Beverage can now be prepared with only sugar
    - Sugar and coffee now drainable items (due to be reverted in next patch due to internal rethink)
    - Hood/bonnet now repairable with metal sheets + screws or torch
    - Uncooked pasta or rice in a pot/pan of water will now eventually rot 
    - Balanced trunk and glove box capacity on vehicles and trailers
    - Increased watch spawn rate on zombies.

    ANIMS

    - Added Zombie_WindowLungeHitReact.X.
    - adjusted bob_sitground anim to finish on correct pose
    - tweaked sitting anims to blend a little better

    MODDING / DEV

    - Added support for custom decals, clothing and outfits in mods.
        Each mod may have it's own copy of these files:
            media/fileGuidTable.xml
            media/clothing/clothing.xml
            media/clothing/clothingDecals.xml
        The above mod files no longer override the game's files with the same name.
        Mod decal groups and outfits with the same name as one the game defines will override the game's.
    - Added support for custom beard styles and hair styles in mods.
    - Added a new script item property named AcceptItemFunction which specifies the name of a Lua function to test whether an item is allowed in a container. 
        This is in addition to the existing OnlyAcceptCategory property which tests InventoryItem:getCategory().
         For example, to allow only medical items in a First Aid Kit, add a line to clothing_bags.txt:
         item FirstAidKit
             {
                ...
                AcceptItemFunction = AcceptItemFunction.FirstAidKit,
             }
         And add this function in a Lua file:
             function AcceptItemFunction.FirstAidKit(container, item)
               return item:getStringItemType() == "Medical"
             end
    - Changed Color.HSBtoRGB() to return a Color instead of Integer[3]. If you want the integer values, use Color.getRedByte(), Color.getGreenByte() and Color.getBlueByte().
    - Challenges may define a function named getSpawnRegion() to allow multiple spawn points and spawn regions. Previously only a single fixed spawn point was supported.
     See the commented-out Kingsmouth.getSpawnRegion() function for an example.
    - A challenge's AddPlayer() function is now called when creating new players in existing games.
        This is used by the CDDA challenge to start new players naked and injured, for example.
    - The "OnEat" item-script Lua function is now called with a third parameter named 'percent' to indicate what percentage of the remaining amount of the item was consumed. Also, the function is called before the food is consumed.
        See OnEat_Cigarettes() for an example of how it is used.
    - Fixed unrecoverable TextureCombiner errors when a texture couldn't be loaded.
        Missing textures are displayed as a red and white checkerboard texture.
    - Display the filename of an asset that fails to load in the exception message.
    - Fixed multithreading issue with OutfitRNG. ImageData constructors throw exceptions instead of catching them now. 
    - Fixed not properly reloading modified textures that previously failed to load.
        This doesn't handle texture files that were previously missing, only ones that failed to load.
    - Added a two-second delay before DebugFileWatcher handles changes to modified files.
        This is to address two things:
            1) The file may still be being written by another application that is saving it.
            2) Sometimes there are multiple events for the same file, such as a "create" event followed by one or more "modified" events.
    - ISSliderPanel now checks for shift-clicking instead of whatever key "Run" is bound to.
    - Changed puddles rendering to use vertex buffer objects, reducing the number of calls needed to render them.

    CUTAWAY FIXES

    - Fixed stretched window cutaways 
    - Fixed vents not cutting away / turning transparent like other objects
    - Fixed Short walls in Prison not cutting away in a nice way
    - Fixed Double door cutaways - were previously offset on a building
    - Fixed stairs not cutting away properly

    FIXES

    - Fixed not being able to choose a texture in the character-creation ui for clothing items that don't have models. For example, Denim Shirt and Leather Gloves.
    - Fixed "Override:true" not working in mod recipes, resulting in duplicate recipes.
    - Fixed the skybox texture not updating after fast-forwarding (F5 or F6 or sleeping).
    - Fixed SkyBox.update() allocating Color and Vector3f each time.
    - Fixed the Skybox.Show debug texture size changing when zooming.
    - Fixed less than one unit of Twine being returned when destroying a Stick Trap.
    - Fixed server-side STrapGlobalObject calling client-side CTrapSystem:sendCommand().
    - Fixed items that weigh less than 0.005 being displayed as 0.0 weight. Now items weighing less than 0.01 are displayed as 0.01. For example, Screws.
    - Fixed double metalwork doors giving planks and nails when destroyed.
    - Fixed loading the SQL library from the user's Temp directory on 64-bit Windows.
    - Fixed missing animation for unloading bullets from rifles without magazines.
    - Fixed being unable to remove the key from the ignition when clicking on the key icon in the dashboard when the "Leave Key In Ignition" option is on.
    - Fixed controller not being able to open Fitness UI (The controller Y button opens it from the health UI)
    - Fixed sunstar motel arch cutaway.
    - Fixed the police barricade vehicle stories not checking for a wide-enough zone properly, preventing them from spawning.
    - Fixed closing the health panel closing after opening fitness panel.
    - Fixed a multi-monitor issue on Linux.  Sometimes resolutions for the non-primary monitor were detected.
    - Fixed errors cleaning bandages using a sink/etc.
    - Fixed not walking to the water-containing object when cleaning bandages from a sink/etc.
    - Fixed student zeds could spawn with 2 bags.
    - Fixed muzzle flashes emitting no light during the day, even in dark rooms.
    - Fixed the shovel not appearing in the player's hands when filling a grave, if the shovel wasn't already equipped.
    - Fixed animation when burning a corpse with gas.
    - Fixed exception in InventoryItem.synchWithVisual() when an item's IconsForTexture list is smaller than the number of
     clothing textures for that item.
    - Fixed formatting bug in clothing_pants.txt related to Shorts_ShortDenim.
    - Fixed the "Remove Broken Glass" context-menu option not being shown as disabled when the player is holding an item in the left hand.
    - Fixed the health panel being shown when displaying the fitness ui, when using a controller.
    - Fixed errors pressing keys during the "This is how you died" loading stage.
    - Fixed FileNotFoundException when loading mods without clothing.xml.
    - Fixed an exception turning an equipped radio on or off when a generator is nearby.
    - Fixed surprise zombies in spawn locations, even though this was frequently hilarious. Zombies are now removed from the inside and around the building the player spawns in, when creating a new player in an existing game.
     This does not include reanimated player zombies. Also, house alarms are disabled.
    - Fixed player not spawning in the correct location when creating a new player in an existing challenge
    - Fixed getting max benefit (or harm) from smoking part of a cigarette.
    - Fixed not being able to interrupt closing windows or smashing windows.
    - Fixed the player turning when following a very short path.  Now the player will strafe to the new position without turning. For example, when smashing a vehicle window, the player would turn around, walk to the required position, then turn to
     face the vehicle again before smashing the window.
    - Fixed vehicles dropping to the ground when loading or spawning them.
    - Fixed PhysicsDebugRenderer not being thread-safe.
    - Fixed zeds taking too long to stomp to death in certain conditions
    - Fixed being able to build a floor on farming plots
    - Fixed return items when dismantling of double doors
    - Fixed doorframe going invisible when painted light blue
    - Fixed male tourist outfit spawning wearing dresses/skirts.
    - Fixed extreme length of required stomping on zombies in some situations.
    - Fixed various map bugs
    - Fixed untranslated names of burnt vehicles being displayed in the radial menu.
    - Fixed some bags not playing "zip" sfx when interacted with
    - Fixed painted boxes not showing color correctly
    - Fixed having hood up and equipping hat replacing whole hoodie with hat, instead of removing hood and putting hat on
    - Fixed not being able to "Put Out" BBQ
    - Fixed non-centered multiple lines of text horizontally in the radial menu.
    - Fixed split-screen rendering issue with puddles.
    - Fixed a rendering issue with water that resulted in visible lines along chunk boundaries.(Water flow and speed weren't updated when adjacent chunks were loaded.)
    - Fixed a bug where fixed capacity defined in vehicles wasn't used.
    - Fixed Default Sprint key on MacOS being LMETA instead of LMENU.
    - Fixed hedges not slowing players and zombies. (Players in ghost mode or noclip are not slowed by hedges or trees.)
    - Fixed clothing condition and wetness resetting when switching from hood-up to hood-down, etc.
    - Fixed the controller A button entering vans instead of opening the rear door to access the trunk.
    - Fixed the wrong strafe angle being used when walking short paths.
    - Fixed max capacity for vehicles not being saved.
  18. Like
    Batsphinx got a reaction from Trip in IWBUMS 41.45 released   
    NEW
     
    - Allow crowbars to be used to remove wood barricades, and use animations for it
    - Added context-menu commands for adding all fuel items, and all fuel items of a certain type, to barbecues, campfires and fireplaces.
    - The warm-hands-by-a-fire now works with fireplaces.
    - Added 'world' attachments to shotgun models.
    - Added a shit ton of new male names, female names and surnames taken from 1994 US census so every other character isn't called Marina Hodgetts. (Thanks to Jam for putting these together.)
    - The inspect-clothing command will transfer items to the player's inventory if needed.
    - Inflating vehicle tires will stop at the maximum pressure instead of always adding 5. It was annoying having to cancel the action at the right time.
    - Play the "craft" animation when adding patches to and removing patches from clothing.
    - Updated translations.
    - Display "Sleep on Ground" instead of "Sleep" in the context menu when no bed is selected.
    - The "Sleep" tooltip displays the quality of the bed which can be Bad, Average or Good.
    - Added cooler (can be worn in hands).
    - Added satchel (3 variations, can be worn on back or in hands).
    - Added briefcase spawns
    - Added pistol case.
    - Updated some textures for bags.
    - Allow the player to shove (and stomp) sooner after attacking with a weapon.
    - The crafting ui displays the the player's skill level for recipes with required skills (such as Make Trap Box).
     Required skills are displayed in red text if the player's level is below the required level.
    - Added methods Recipe.getRequiredSkillCount() and Recipe.getRequiredSkill().
     Recipe.getRequiredSkill(int index) returns a RequiredSkill object with methods getPerk() and getLevel().
     
    IMPROVED FOG SYSTEM
     
    - brand new awesome fog now added
    - added display option for new fog, can toggle between high quality, medium quality and legacy (build 40)
    - changed fog generation, now variable duration based on day mean temperature.
    - added chance of grey tinted fog effect to storms.
    - added guaranteed strong tinted fog effect to tropical storm, now very distinctive.
    - modified blizzard effects to work well with new fog.
    - added new fog control panel to debug menu.

    FITNESS
     
    - Xp gain from exercises can now be different.
    - Regularity will not drop until 24h after doing an exercise.
    - Fixed some fitness animation weirdness.
    - Remove the fitness UI when entering a car.
    - Fixed NullPointerException in Fitness.decreaseRegularity().
    - Fixed exception in Fitness.load().
    - Moved fitness to health panel (new button) instead of right click menu.
     
    BALANCE
     
    - Allow washing dirty bandages from clean-water sources such as sinks.
    - Dismantle Flashlight recipe is allowed if there is a battery in the flashlight.
    - Renamed two Jackets to Leather Jacket. They were already leather.
    - Increased antique stove weight from 20.0 to 40.0.
    - Decreased gardening spray capacity
    - Reduced size of zombies target outline by 20%.
    - Reloading a gun will look for magazine in bags and not just main inventory.
    - Toilet paper can now be used the same way as tissue (equip in main or secondary hands to reduce cough noise).
    - Toilet paper can now be used to start and fuel a fire/BBQ.
    - Slight bump in sneak skill (when in plain sight, will reduce the zed vision/footstep volume)
    - MSR700/MSR788 now doesn't require magazines.
     
    OPTIMIZATION

    - Optimized ScriptModule.getRecipe().
    - Declared SpriteRenderer.instance and SpriteRenderer.ringBuffer 'final'.
    - Avoid some string-related gc with cutaways (parsing sprite names).
    - Big optimization to cutaway rendering - moved testing of TallHoppableW, WallWTrans, TallHoppableN and WallNTrans to IsoFlagTypes since they were doing lots of string comparisons and slowing rendering down

    MODEL AND ANIM CHANGES
     
    -adjusted geometry so the gas mask works better with hats.
    -added another body location to BodyLocations.lua (MaskFull)
    -made welding mask part of the MaskFull body location
    - Changed the cough/sneeze/fidget animations (the 'ext' state) to play as a sub-state of the 'idle' state.
    -re-exported TShirt_white to not have buttoned front
     
    FIXES
     
    - Fixed the wrong animation playing when putting on baseball caps.
    - Fixed NullPointerException in IsoGridSquare.getPuddlesDir(). This happened with a fireplace.
    - Fixed some missing translation files
    - Fixed not being able to equip and unequip items while aiming.
    - Fixed zombie fence-flop crawling attacks hitting the player through closed doors.
    - Fixed recipes without required skills not working.
    - Fixed items not being taken from bags when equipping a light source.
    - Fixed equipping an item in one hand when it looked like it should be equipped two-handed when dragging an item onto the primary/secondary icons.
    - Fixed being able to climb through closed windows sometimes.
    - Fixed not being able to reload an empty magazine while aiming.
    - Fixed gunshot sounds and muzzleflash effects while sitting on the ground.
    - Fixed exception when lighting a barbecue or fireplace with gas.
    - Fixed timed actions not working while the warm-hands-by-a-fire animation is playing.
    - Fixed warm-hands-by-a-fire animation possibly continuing long after the fire goes out.
    - Fixed being able to fish at long distance with spears. (also one of the problem was if you only had a spear and open the UI, it was considered as a fishing rod!)
    - Fixed transition animation from standing to sitting on ground not playing.
    - Fixed available hotbar slots not updating when using a controller.
    - Fixed timed actions not starting while aiming in a vehicle.
    - Fixed the player getting stuck exiting a vehicle if it was done while aiming.
    - Fixed toggle aim on/off not working in vehicles.
    - Fixed the aim-assist cursor not disappearig after the player dies.
    - Fixed long lines of text extending outside the crafting and switch-vehicle-seat windows.
    - Fixed the automatic moving of items on vehicle seats not moving an item if it used all the remaining space on a seat.
    - Fixed regularity map being re-initlized if fitness instructor/fireman.
    - Fixed regularity progress bar showing incorrect values (it could never be at 100%!)
    - Fixed the info popup in the profession/traits ui not being hidden when going to the previous or next screen.
    - Fixed containers with capacity 3 or less not getting extra capacity from the Organized trait. This affected Fanny Packs.
    - Fixed corpse inventory capacity being affected by the Organized and Disorganized traits. Player inventory capacity has never been affected by these traits (only bags).
    - Fixed issues with the "Campfire Info" command after right-clicking on a campfire that is behind a wall.
    - Fixed being able to drive a vehicle forward in reverse gear.
    - Fixed being unable to look around by holding the right mouse button while in a vehicle with the window closed. This worked when holding the Aim key, but not when holding the right mouse button. 
    - Fixed "All All" not adding all charcoal to barbecues, campfires and fireplaces. It will add one unit of charcoal (30 minutes) at a time until all is used.
    - Fixed zombies moving through walls after climbing over a fence sometimes. This was easy to reproduce north of the West Point police station when fast-forwarding.
    - Fixed cough/sneeze/fidget animations playing more frequently at higher framerates.
    - Fixed context-menu cooking translations for latest version of Translatoid
    - Fixed clothing mod data being lost when reversing caps, putting hoods up/down, etc.
    - Fixed not facing doors when locking and unlocking them via the context menu.
    - Fixed not gaining only strength and not fitness exp when doing some fitness exercices.
    - Fixed being able to open multiple fitness UI.
    - Fixed double door and stick traps returning more than they took to craft.
    - Fixed sleep traits not affecting how much a char sleeps
    - Fixed not being able to disassemble large metal shelves
    - Fixed not being able to remove tiredness with restless sleeper
    - Fixed front strength not showing properly in debug climate plotter
  19. Pie
    Batsphinx got a reaction from glenneroo in IWBUMS 41.45 released   
    NEW
     
    - Allow crowbars to be used to remove wood barricades, and use animations for it
    - Added context-menu commands for adding all fuel items, and all fuel items of a certain type, to barbecues, campfires and fireplaces.
    - The warm-hands-by-a-fire now works with fireplaces.
    - Added 'world' attachments to shotgun models.
    - Added a shit ton of new male names, female names and surnames taken from 1994 US census so every other character isn't called Marina Hodgetts. (Thanks to Jam for putting these together.)
    - The inspect-clothing command will transfer items to the player's inventory if needed.
    - Inflating vehicle tires will stop at the maximum pressure instead of always adding 5. It was annoying having to cancel the action at the right time.
    - Play the "craft" animation when adding patches to and removing patches from clothing.
    - Updated translations.
    - Display "Sleep on Ground" instead of "Sleep" in the context menu when no bed is selected.
    - The "Sleep" tooltip displays the quality of the bed which can be Bad, Average or Good.
    - Added cooler (can be worn in hands).
    - Added satchel (3 variations, can be worn on back or in hands).
    - Added briefcase spawns
    - Added pistol case.
    - Updated some textures for bags.
    - Allow the player to shove (and stomp) sooner after attacking with a weapon.
    - The crafting ui displays the the player's skill level for recipes with required skills (such as Make Trap Box).
     Required skills are displayed in red text if the player's level is below the required level.
    - Added methods Recipe.getRequiredSkillCount() and Recipe.getRequiredSkill().
     Recipe.getRequiredSkill(int index) returns a RequiredSkill object with methods getPerk() and getLevel().
     
    IMPROVED FOG SYSTEM
     
    - brand new awesome fog now added
    - added display option for new fog, can toggle between high quality, medium quality and legacy (build 40)
    - changed fog generation, now variable duration based on day mean temperature.
    - added chance of grey tinted fog effect to storms.
    - added guaranteed strong tinted fog effect to tropical storm, now very distinctive.
    - modified blizzard effects to work well with new fog.
    - added new fog control panel to debug menu.

    FITNESS
     
    - Xp gain from exercises can now be different.
    - Regularity will not drop until 24h after doing an exercise.
    - Fixed some fitness animation weirdness.
    - Remove the fitness UI when entering a car.
    - Fixed NullPointerException in Fitness.decreaseRegularity().
    - Fixed exception in Fitness.load().
    - Moved fitness to health panel (new button) instead of right click menu.
     
    BALANCE
     
    - Allow washing dirty bandages from clean-water sources such as sinks.
    - Dismantle Flashlight recipe is allowed if there is a battery in the flashlight.
    - Renamed two Jackets to Leather Jacket. They were already leather.
    - Increased antique stove weight from 20.0 to 40.0.
    - Decreased gardening spray capacity
    - Reduced size of zombies target outline by 20%.
    - Reloading a gun will look for magazine in bags and not just main inventory.
    - Toilet paper can now be used the same way as tissue (equip in main or secondary hands to reduce cough noise).
    - Toilet paper can now be used to start and fuel a fire/BBQ.
    - Slight bump in sneak skill (when in plain sight, will reduce the zed vision/footstep volume)
    - MSR700/MSR788 now doesn't require magazines.
     
    OPTIMIZATION

    - Optimized ScriptModule.getRecipe().
    - Declared SpriteRenderer.instance and SpriteRenderer.ringBuffer 'final'.
    - Avoid some string-related gc with cutaways (parsing sprite names).
    - Big optimization to cutaway rendering - moved testing of TallHoppableW, WallWTrans, TallHoppableN and WallNTrans to IsoFlagTypes since they were doing lots of string comparisons and slowing rendering down

    MODEL AND ANIM CHANGES
     
    -adjusted geometry so the gas mask works better with hats.
    -added another body location to BodyLocations.lua (MaskFull)
    -made welding mask part of the MaskFull body location
    - Changed the cough/sneeze/fidget animations (the 'ext' state) to play as a sub-state of the 'idle' state.
    -re-exported TShirt_white to not have buttoned front
     
    FIXES
     
    - Fixed the wrong animation playing when putting on baseball caps.
    - Fixed NullPointerException in IsoGridSquare.getPuddlesDir(). This happened with a fireplace.
    - Fixed some missing translation files
    - Fixed not being able to equip and unequip items while aiming.
    - Fixed zombie fence-flop crawling attacks hitting the player through closed doors.
    - Fixed recipes without required skills not working.
    - Fixed items not being taken from bags when equipping a light source.
    - Fixed equipping an item in one hand when it looked like it should be equipped two-handed when dragging an item onto the primary/secondary icons.
    - Fixed being able to climb through closed windows sometimes.
    - Fixed not being able to reload an empty magazine while aiming.
    - Fixed gunshot sounds and muzzleflash effects while sitting on the ground.
    - Fixed exception when lighting a barbecue or fireplace with gas.
    - Fixed timed actions not working while the warm-hands-by-a-fire animation is playing.
    - Fixed warm-hands-by-a-fire animation possibly continuing long after the fire goes out.
    - Fixed being able to fish at long distance with spears. (also one of the problem was if you only had a spear and open the UI, it was considered as a fishing rod!)
    - Fixed transition animation from standing to sitting on ground not playing.
    - Fixed available hotbar slots not updating when using a controller.
    - Fixed timed actions not starting while aiming in a vehicle.
    - Fixed the player getting stuck exiting a vehicle if it was done while aiming.
    - Fixed toggle aim on/off not working in vehicles.
    - Fixed the aim-assist cursor not disappearig after the player dies.
    - Fixed long lines of text extending outside the crafting and switch-vehicle-seat windows.
    - Fixed the automatic moving of items on vehicle seats not moving an item if it used all the remaining space on a seat.
    - Fixed regularity map being re-initlized if fitness instructor/fireman.
    - Fixed regularity progress bar showing incorrect values (it could never be at 100%!)
    - Fixed the info popup in the profession/traits ui not being hidden when going to the previous or next screen.
    - Fixed containers with capacity 3 or less not getting extra capacity from the Organized trait. This affected Fanny Packs.
    - Fixed corpse inventory capacity being affected by the Organized and Disorganized traits. Player inventory capacity has never been affected by these traits (only bags).
    - Fixed issues with the "Campfire Info" command after right-clicking on a campfire that is behind a wall.
    - Fixed being able to drive a vehicle forward in reverse gear.
    - Fixed being unable to look around by holding the right mouse button while in a vehicle with the window closed. This worked when holding the Aim key, but not when holding the right mouse button. 
    - Fixed "All All" not adding all charcoal to barbecues, campfires and fireplaces. It will add one unit of charcoal (30 minutes) at a time until all is used.
    - Fixed zombies moving through walls after climbing over a fence sometimes. This was easy to reproduce north of the West Point police station when fast-forwarding.
    - Fixed cough/sneeze/fidget animations playing more frequently at higher framerates.
    - Fixed context-menu cooking translations for latest version of Translatoid
    - Fixed clothing mod data being lost when reversing caps, putting hoods up/down, etc.
    - Fixed not facing doors when locking and unlocking them via the context menu.
    - Fixed not gaining only strength and not fitness exp when doing some fitness exercices.
    - Fixed being able to open multiple fitness UI.
    - Fixed double door and stick traps returning more than they took to craft.
    - Fixed sleep traits not affecting how much a char sleeps
    - Fixed not being able to disassemble large metal shelves
    - Fixed not being able to remove tiredness with restless sleeper
    - Fixed front strength not showing properly in debug climate plotter
  20. Like
    Batsphinx got a reaction from WildCnt in Small but Important Suggestions Thread   
    Just a general request - but I'm going through this thread several times a week to harvest suggestions, and it gets a bit tricky when there's a bunch of discussion and back and forth in here. As there is above.
     
    If we could keep it to numbered suggestions, and discussions in separate threads, it'd be a lot more helpful, if at all possible. It's getting a bit unwieldy currently. Thank you!  x
  21. Pie
    Batsphinx got a reaction from jhonnystone in IWBUMS 41.45 released   
    NEW
     
    - Allow crowbars to be used to remove wood barricades, and use animations for it
    - Added context-menu commands for adding all fuel items, and all fuel items of a certain type, to barbecues, campfires and fireplaces.
    - The warm-hands-by-a-fire now works with fireplaces.
    - Added 'world' attachments to shotgun models.
    - Added a shit ton of new male names, female names and surnames taken from 1994 US census so every other character isn't called Marina Hodgetts. (Thanks to Jam for putting these together.)
    - The inspect-clothing command will transfer items to the player's inventory if needed.
    - Inflating vehicle tires will stop at the maximum pressure instead of always adding 5. It was annoying having to cancel the action at the right time.
    - Play the "craft" animation when adding patches to and removing patches from clothing.
    - Updated translations.
    - Display "Sleep on Ground" instead of "Sleep" in the context menu when no bed is selected.
    - The "Sleep" tooltip displays the quality of the bed which can be Bad, Average or Good.
    - Added cooler (can be worn in hands).
    - Added satchel (3 variations, can be worn on back or in hands).
    - Added briefcase spawns
    - Added pistol case.
    - Updated some textures for bags.
    - Allow the player to shove (and stomp) sooner after attacking with a weapon.
    - The crafting ui displays the the player's skill level for recipes with required skills (such as Make Trap Box).
     Required skills are displayed in red text if the player's level is below the required level.
    - Added methods Recipe.getRequiredSkillCount() and Recipe.getRequiredSkill().
     Recipe.getRequiredSkill(int index) returns a RequiredSkill object with methods getPerk() and getLevel().
     
    IMPROVED FOG SYSTEM
     
    - brand new awesome fog now added
    - added display option for new fog, can toggle between high quality, medium quality and legacy (build 40)
    - changed fog generation, now variable duration based on day mean temperature.
    - added chance of grey tinted fog effect to storms.
    - added guaranteed strong tinted fog effect to tropical storm, now very distinctive.
    - modified blizzard effects to work well with new fog.
    - added new fog control panel to debug menu.

    FITNESS
     
    - Xp gain from exercises can now be different.
    - Regularity will not drop until 24h after doing an exercise.
    - Fixed some fitness animation weirdness.
    - Remove the fitness UI when entering a car.
    - Fixed NullPointerException in Fitness.decreaseRegularity().
    - Fixed exception in Fitness.load().
    - Moved fitness to health panel (new button) instead of right click menu.
     
    BALANCE
     
    - Allow washing dirty bandages from clean-water sources such as sinks.
    - Dismantle Flashlight recipe is allowed if there is a battery in the flashlight.
    - Renamed two Jackets to Leather Jacket. They were already leather.
    - Increased antique stove weight from 20.0 to 40.0.
    - Decreased gardening spray capacity
    - Reduced size of zombies target outline by 20%.
    - Reloading a gun will look for magazine in bags and not just main inventory.
    - Toilet paper can now be used the same way as tissue (equip in main or secondary hands to reduce cough noise).
    - Toilet paper can now be used to start and fuel a fire/BBQ.
    - Slight bump in sneak skill (when in plain sight, will reduce the zed vision/footstep volume)
    - MSR700/MSR788 now doesn't require magazines.
     
    OPTIMIZATION

    - Optimized ScriptModule.getRecipe().
    - Declared SpriteRenderer.instance and SpriteRenderer.ringBuffer 'final'.
    - Avoid some string-related gc with cutaways (parsing sprite names).
    - Big optimization to cutaway rendering - moved testing of TallHoppableW, WallWTrans, TallHoppableN and WallNTrans to IsoFlagTypes since they were doing lots of string comparisons and slowing rendering down

    MODEL AND ANIM CHANGES
     
    -adjusted geometry so the gas mask works better with hats.
    -added another body location to BodyLocations.lua (MaskFull)
    -made welding mask part of the MaskFull body location
    - Changed the cough/sneeze/fidget animations (the 'ext' state) to play as a sub-state of the 'idle' state.
    -re-exported TShirt_white to not have buttoned front
     
    FIXES
     
    - Fixed the wrong animation playing when putting on baseball caps.
    - Fixed NullPointerException in IsoGridSquare.getPuddlesDir(). This happened with a fireplace.
    - Fixed some missing translation files
    - Fixed not being able to equip and unequip items while aiming.
    - Fixed zombie fence-flop crawling attacks hitting the player through closed doors.
    - Fixed recipes without required skills not working.
    - Fixed items not being taken from bags when equipping a light source.
    - Fixed equipping an item in one hand when it looked like it should be equipped two-handed when dragging an item onto the primary/secondary icons.
    - Fixed being able to climb through closed windows sometimes.
    - Fixed not being able to reload an empty magazine while aiming.
    - Fixed gunshot sounds and muzzleflash effects while sitting on the ground.
    - Fixed exception when lighting a barbecue or fireplace with gas.
    - Fixed timed actions not working while the warm-hands-by-a-fire animation is playing.
    - Fixed warm-hands-by-a-fire animation possibly continuing long after the fire goes out.
    - Fixed being able to fish at long distance with spears. (also one of the problem was if you only had a spear and open the UI, it was considered as a fishing rod!)
    - Fixed transition animation from standing to sitting on ground not playing.
    - Fixed available hotbar slots not updating when using a controller.
    - Fixed timed actions not starting while aiming in a vehicle.
    - Fixed the player getting stuck exiting a vehicle if it was done while aiming.
    - Fixed toggle aim on/off not working in vehicles.
    - Fixed the aim-assist cursor not disappearig after the player dies.
    - Fixed long lines of text extending outside the crafting and switch-vehicle-seat windows.
    - Fixed the automatic moving of items on vehicle seats not moving an item if it used all the remaining space on a seat.
    - Fixed regularity map being re-initlized if fitness instructor/fireman.
    - Fixed regularity progress bar showing incorrect values (it could never be at 100%!)
    - Fixed the info popup in the profession/traits ui not being hidden when going to the previous or next screen.
    - Fixed containers with capacity 3 or less not getting extra capacity from the Organized trait. This affected Fanny Packs.
    - Fixed corpse inventory capacity being affected by the Organized and Disorganized traits. Player inventory capacity has never been affected by these traits (only bags).
    - Fixed issues with the "Campfire Info" command after right-clicking on a campfire that is behind a wall.
    - Fixed being able to drive a vehicle forward in reverse gear.
    - Fixed being unable to look around by holding the right mouse button while in a vehicle with the window closed. This worked when holding the Aim key, but not when holding the right mouse button. 
    - Fixed "All All" not adding all charcoal to barbecues, campfires and fireplaces. It will add one unit of charcoal (30 minutes) at a time until all is used.
    - Fixed zombies moving through walls after climbing over a fence sometimes. This was easy to reproduce north of the West Point police station when fast-forwarding.
    - Fixed cough/sneeze/fidget animations playing more frequently at higher framerates.
    - Fixed context-menu cooking translations for latest version of Translatoid
    - Fixed clothing mod data being lost when reversing caps, putting hoods up/down, etc.
    - Fixed not facing doors when locking and unlocking them via the context menu.
    - Fixed not gaining only strength and not fitness exp when doing some fitness exercices.
    - Fixed being able to open multiple fitness UI.
    - Fixed double door and stick traps returning more than they took to craft.
    - Fixed sleep traits not affecting how much a char sleeps
    - Fixed not being able to disassemble large metal shelves
    - Fixed not being able to remove tiredness with restless sleeper
    - Fixed front strength not showing properly in debug climate plotter
  22. Spiffo
    Batsphinx got a reaction from Maris in IWBUMS 41.45 released   
    NEW
     
    - Allow crowbars to be used to remove wood barricades, and use animations for it
    - Added context-menu commands for adding all fuel items, and all fuel items of a certain type, to barbecues, campfires and fireplaces.
    - The warm-hands-by-a-fire now works with fireplaces.
    - Added 'world' attachments to shotgun models.
    - Added a shit ton of new male names, female names and surnames taken from 1994 US census so every other character isn't called Marina Hodgetts. (Thanks to Jam for putting these together.)
    - The inspect-clothing command will transfer items to the player's inventory if needed.
    - Inflating vehicle tires will stop at the maximum pressure instead of always adding 5. It was annoying having to cancel the action at the right time.
    - Play the "craft" animation when adding patches to and removing patches from clothing.
    - Updated translations.
    - Display "Sleep on Ground" instead of "Sleep" in the context menu when no bed is selected.
    - The "Sleep" tooltip displays the quality of the bed which can be Bad, Average or Good.
    - Added cooler (can be worn in hands).
    - Added satchel (3 variations, can be worn on back or in hands).
    - Added briefcase spawns
    - Added pistol case.
    - Updated some textures for bags.
    - Allow the player to shove (and stomp) sooner after attacking with a weapon.
    - The crafting ui displays the the player's skill level for recipes with required skills (such as Make Trap Box).
     Required skills are displayed in red text if the player's level is below the required level.
    - Added methods Recipe.getRequiredSkillCount() and Recipe.getRequiredSkill().
     Recipe.getRequiredSkill(int index) returns a RequiredSkill object with methods getPerk() and getLevel().
     
    IMPROVED FOG SYSTEM
     
    - brand new awesome fog now added
    - added display option for new fog, can toggle between high quality, medium quality and legacy (build 40)
    - changed fog generation, now variable duration based on day mean temperature.
    - added chance of grey tinted fog effect to storms.
    - added guaranteed strong tinted fog effect to tropical storm, now very distinctive.
    - modified blizzard effects to work well with new fog.
    - added new fog control panel to debug menu.

    FITNESS
     
    - Xp gain from exercises can now be different.
    - Regularity will not drop until 24h after doing an exercise.
    - Fixed some fitness animation weirdness.
    - Remove the fitness UI when entering a car.
    - Fixed NullPointerException in Fitness.decreaseRegularity().
    - Fixed exception in Fitness.load().
    - Moved fitness to health panel (new button) instead of right click menu.
     
    BALANCE
     
    - Allow washing dirty bandages from clean-water sources such as sinks.
    - Dismantle Flashlight recipe is allowed if there is a battery in the flashlight.
    - Renamed two Jackets to Leather Jacket. They were already leather.
    - Increased antique stove weight from 20.0 to 40.0.
    - Decreased gardening spray capacity
    - Reduced size of zombies target outline by 20%.
    - Reloading a gun will look for magazine in bags and not just main inventory.
    - Toilet paper can now be used the same way as tissue (equip in main or secondary hands to reduce cough noise).
    - Toilet paper can now be used to start and fuel a fire/BBQ.
    - Slight bump in sneak skill (when in plain sight, will reduce the zed vision/footstep volume)
    - MSR700/MSR788 now doesn't require magazines.
     
    OPTIMIZATION

    - Optimized ScriptModule.getRecipe().
    - Declared SpriteRenderer.instance and SpriteRenderer.ringBuffer 'final'.
    - Avoid some string-related gc with cutaways (parsing sprite names).
    - Big optimization to cutaway rendering - moved testing of TallHoppableW, WallWTrans, TallHoppableN and WallNTrans to IsoFlagTypes since they were doing lots of string comparisons and slowing rendering down

    MODEL AND ANIM CHANGES
     
    -adjusted geometry so the gas mask works better with hats.
    -added another body location to BodyLocations.lua (MaskFull)
    -made welding mask part of the MaskFull body location
    - Changed the cough/sneeze/fidget animations (the 'ext' state) to play as a sub-state of the 'idle' state.
    -re-exported TShirt_white to not have buttoned front
     
    FIXES
     
    - Fixed the wrong animation playing when putting on baseball caps.
    - Fixed NullPointerException in IsoGridSquare.getPuddlesDir(). This happened with a fireplace.
    - Fixed some missing translation files
    - Fixed not being able to equip and unequip items while aiming.
    - Fixed zombie fence-flop crawling attacks hitting the player through closed doors.
    - Fixed recipes without required skills not working.
    - Fixed items not being taken from bags when equipping a light source.
    - Fixed equipping an item in one hand when it looked like it should be equipped two-handed when dragging an item onto the primary/secondary icons.
    - Fixed being able to climb through closed windows sometimes.
    - Fixed not being able to reload an empty magazine while aiming.
    - Fixed gunshot sounds and muzzleflash effects while sitting on the ground.
    - Fixed exception when lighting a barbecue or fireplace with gas.
    - Fixed timed actions not working while the warm-hands-by-a-fire animation is playing.
    - Fixed warm-hands-by-a-fire animation possibly continuing long after the fire goes out.
    - Fixed being able to fish at long distance with spears. (also one of the problem was if you only had a spear and open the UI, it was considered as a fishing rod!)
    - Fixed transition animation from standing to sitting on ground not playing.
    - Fixed available hotbar slots not updating when using a controller.
    - Fixed timed actions not starting while aiming in a vehicle.
    - Fixed the player getting stuck exiting a vehicle if it was done while aiming.
    - Fixed toggle aim on/off not working in vehicles.
    - Fixed the aim-assist cursor not disappearig after the player dies.
    - Fixed long lines of text extending outside the crafting and switch-vehicle-seat windows.
    - Fixed the automatic moving of items on vehicle seats not moving an item if it used all the remaining space on a seat.
    - Fixed regularity map being re-initlized if fitness instructor/fireman.
    - Fixed regularity progress bar showing incorrect values (it could never be at 100%!)
    - Fixed the info popup in the profession/traits ui not being hidden when going to the previous or next screen.
    - Fixed containers with capacity 3 or less not getting extra capacity from the Organized trait. This affected Fanny Packs.
    - Fixed corpse inventory capacity being affected by the Organized and Disorganized traits. Player inventory capacity has never been affected by these traits (only bags).
    - Fixed issues with the "Campfire Info" command after right-clicking on a campfire that is behind a wall.
    - Fixed being able to drive a vehicle forward in reverse gear.
    - Fixed being unable to look around by holding the right mouse button while in a vehicle with the window closed. This worked when holding the Aim key, but not when holding the right mouse button. 
    - Fixed "All All" not adding all charcoal to barbecues, campfires and fireplaces. It will add one unit of charcoal (30 minutes) at a time until all is used.
    - Fixed zombies moving through walls after climbing over a fence sometimes. This was easy to reproduce north of the West Point police station when fast-forwarding.
    - Fixed cough/sneeze/fidget animations playing more frequently at higher framerates.
    - Fixed context-menu cooking translations for latest version of Translatoid
    - Fixed clothing mod data being lost when reversing caps, putting hoods up/down, etc.
    - Fixed not facing doors when locking and unlocking them via the context menu.
    - Fixed not gaining only strength and not fitness exp when doing some fitness exercices.
    - Fixed being able to open multiple fitness UI.
    - Fixed double door and stick traps returning more than they took to craft.
    - Fixed sleep traits not affecting how much a char sleeps
    - Fixed not being able to disassemble large metal shelves
    - Fixed not being able to remove tiredness with restless sleeper
    - Fixed front strength not showing properly in debug climate plotter
  23. Pie
    Batsphinx got a reaction from Aiteron in IWBUMS 41.45 released   
    NEW
     
    - Allow crowbars to be used to remove wood barricades, and use animations for it
    - Added context-menu commands for adding all fuel items, and all fuel items of a certain type, to barbecues, campfires and fireplaces.
    - The warm-hands-by-a-fire now works with fireplaces.
    - Added 'world' attachments to shotgun models.
    - Added a shit ton of new male names, female names and surnames taken from 1994 US census so every other character isn't called Marina Hodgetts. (Thanks to Jam for putting these together.)
    - The inspect-clothing command will transfer items to the player's inventory if needed.
    - Inflating vehicle tires will stop at the maximum pressure instead of always adding 5. It was annoying having to cancel the action at the right time.
    - Play the "craft" animation when adding patches to and removing patches from clothing.
    - Updated translations.
    - Display "Sleep on Ground" instead of "Sleep" in the context menu when no bed is selected.
    - The "Sleep" tooltip displays the quality of the bed which can be Bad, Average or Good.
    - Added cooler (can be worn in hands).
    - Added satchel (3 variations, can be worn on back or in hands).
    - Added briefcase spawns
    - Added pistol case.
    - Updated some textures for bags.
    - Allow the player to shove (and stomp) sooner after attacking with a weapon.
    - The crafting ui displays the the player's skill level for recipes with required skills (such as Make Trap Box).
     Required skills are displayed in red text if the player's level is below the required level.
    - Added methods Recipe.getRequiredSkillCount() and Recipe.getRequiredSkill().
     Recipe.getRequiredSkill(int index) returns a RequiredSkill object with methods getPerk() and getLevel().
     
    IMPROVED FOG SYSTEM
     
    - brand new awesome fog now added
    - added display option for new fog, can toggle between high quality, medium quality and legacy (build 40)
    - changed fog generation, now variable duration based on day mean temperature.
    - added chance of grey tinted fog effect to storms.
    - added guaranteed strong tinted fog effect to tropical storm, now very distinctive.
    - modified blizzard effects to work well with new fog.
    - added new fog control panel to debug menu.

    FITNESS
     
    - Xp gain from exercises can now be different.
    - Regularity will not drop until 24h after doing an exercise.
    - Fixed some fitness animation weirdness.
    - Remove the fitness UI when entering a car.
    - Fixed NullPointerException in Fitness.decreaseRegularity().
    - Fixed exception in Fitness.load().
    - Moved fitness to health panel (new button) instead of right click menu.
     
    BALANCE
     
    - Allow washing dirty bandages from clean-water sources such as sinks.
    - Dismantle Flashlight recipe is allowed if there is a battery in the flashlight.
    - Renamed two Jackets to Leather Jacket. They were already leather.
    - Increased antique stove weight from 20.0 to 40.0.
    - Decreased gardening spray capacity
    - Reduced size of zombies target outline by 20%.
    - Reloading a gun will look for magazine in bags and not just main inventory.
    - Toilet paper can now be used the same way as tissue (equip in main or secondary hands to reduce cough noise).
    - Toilet paper can now be used to start and fuel a fire/BBQ.
    - Slight bump in sneak skill (when in plain sight, will reduce the zed vision/footstep volume)
    - MSR700/MSR788 now doesn't require magazines.
     
    OPTIMIZATION

    - Optimized ScriptModule.getRecipe().
    - Declared SpriteRenderer.instance and SpriteRenderer.ringBuffer 'final'.
    - Avoid some string-related gc with cutaways (parsing sprite names).
    - Big optimization to cutaway rendering - moved testing of TallHoppableW, WallWTrans, TallHoppableN and WallNTrans to IsoFlagTypes since they were doing lots of string comparisons and slowing rendering down

    MODEL AND ANIM CHANGES
     
    -adjusted geometry so the gas mask works better with hats.
    -added another body location to BodyLocations.lua (MaskFull)
    -made welding mask part of the MaskFull body location
    - Changed the cough/sneeze/fidget animations (the 'ext' state) to play as a sub-state of the 'idle' state.
    -re-exported TShirt_white to not have buttoned front
     
    FIXES
     
    - Fixed the wrong animation playing when putting on baseball caps.
    - Fixed NullPointerException in IsoGridSquare.getPuddlesDir(). This happened with a fireplace.
    - Fixed some missing translation files
    - Fixed not being able to equip and unequip items while aiming.
    - Fixed zombie fence-flop crawling attacks hitting the player through closed doors.
    - Fixed recipes without required skills not working.
    - Fixed items not being taken from bags when equipping a light source.
    - Fixed equipping an item in one hand when it looked like it should be equipped two-handed when dragging an item onto the primary/secondary icons.
    - Fixed being able to climb through closed windows sometimes.
    - Fixed not being able to reload an empty magazine while aiming.
    - Fixed gunshot sounds and muzzleflash effects while sitting on the ground.
    - Fixed exception when lighting a barbecue or fireplace with gas.
    - Fixed timed actions not working while the warm-hands-by-a-fire animation is playing.
    - Fixed warm-hands-by-a-fire animation possibly continuing long after the fire goes out.
    - Fixed being able to fish at long distance with spears. (also one of the problem was if you only had a spear and open the UI, it was considered as a fishing rod!)
    - Fixed transition animation from standing to sitting on ground not playing.
    - Fixed available hotbar slots not updating when using a controller.
    - Fixed timed actions not starting while aiming in a vehicle.
    - Fixed the player getting stuck exiting a vehicle if it was done while aiming.
    - Fixed toggle aim on/off not working in vehicles.
    - Fixed the aim-assist cursor not disappearig after the player dies.
    - Fixed long lines of text extending outside the crafting and switch-vehicle-seat windows.
    - Fixed the automatic moving of items on vehicle seats not moving an item if it used all the remaining space on a seat.
    - Fixed regularity map being re-initlized if fitness instructor/fireman.
    - Fixed regularity progress bar showing incorrect values (it could never be at 100%!)
    - Fixed the info popup in the profession/traits ui not being hidden when going to the previous or next screen.
    - Fixed containers with capacity 3 or less not getting extra capacity from the Organized trait. This affected Fanny Packs.
    - Fixed corpse inventory capacity being affected by the Organized and Disorganized traits. Player inventory capacity has never been affected by these traits (only bags).
    - Fixed issues with the "Campfire Info" command after right-clicking on a campfire that is behind a wall.
    - Fixed being able to drive a vehicle forward in reverse gear.
    - Fixed being unable to look around by holding the right mouse button while in a vehicle with the window closed. This worked when holding the Aim key, but not when holding the right mouse button. 
    - Fixed "All All" not adding all charcoal to barbecues, campfires and fireplaces. It will add one unit of charcoal (30 minutes) at a time until all is used.
    - Fixed zombies moving through walls after climbing over a fence sometimes. This was easy to reproduce north of the West Point police station when fast-forwarding.
    - Fixed cough/sneeze/fidget animations playing more frequently at higher framerates.
    - Fixed context-menu cooking translations for latest version of Translatoid
    - Fixed clothing mod data being lost when reversing caps, putting hoods up/down, etc.
    - Fixed not facing doors when locking and unlocking them via the context menu.
    - Fixed not gaining only strength and not fitness exp when doing some fitness exercices.
    - Fixed being able to open multiple fitness UI.
    - Fixed double door and stick traps returning more than they took to craft.
    - Fixed sleep traits not affecting how much a char sleeps
    - Fixed not being able to disassemble large metal shelves
    - Fixed not being able to remove tiredness with restless sleeper
    - Fixed front strength not showing properly in debug climate plotter
  24. Like
    Batsphinx got a reaction from Mkartush in IWBUMS 41.45 released   
    NEW
     
    - Allow crowbars to be used to remove wood barricades, and use animations for it
    - Added context-menu commands for adding all fuel items, and all fuel items of a certain type, to barbecues, campfires and fireplaces.
    - The warm-hands-by-a-fire now works with fireplaces.
    - Added 'world' attachments to shotgun models.
    - Added a shit ton of new male names, female names and surnames taken from 1994 US census so every other character isn't called Marina Hodgetts. (Thanks to Jam for putting these together.)
    - The inspect-clothing command will transfer items to the player's inventory if needed.
    - Inflating vehicle tires will stop at the maximum pressure instead of always adding 5. It was annoying having to cancel the action at the right time.
    - Play the "craft" animation when adding patches to and removing patches from clothing.
    - Updated translations.
    - Display "Sleep on Ground" instead of "Sleep" in the context menu when no bed is selected.
    - The "Sleep" tooltip displays the quality of the bed which can be Bad, Average or Good.
    - Added cooler (can be worn in hands).
    - Added satchel (3 variations, can be worn on back or in hands).
    - Added briefcase spawns
    - Added pistol case.
    - Updated some textures for bags.
    - Allow the player to shove (and stomp) sooner after attacking with a weapon.
    - The crafting ui displays the the player's skill level for recipes with required skills (such as Make Trap Box).
     Required skills are displayed in red text if the player's level is below the required level.
    - Added methods Recipe.getRequiredSkillCount() and Recipe.getRequiredSkill().
     Recipe.getRequiredSkill(int index) returns a RequiredSkill object with methods getPerk() and getLevel().
     
    IMPROVED FOG SYSTEM
     
    - brand new awesome fog now added
    - added display option for new fog, can toggle between high quality, medium quality and legacy (build 40)
    - changed fog generation, now variable duration based on day mean temperature.
    - added chance of grey tinted fog effect to storms.
    - added guaranteed strong tinted fog effect to tropical storm, now very distinctive.
    - modified blizzard effects to work well with new fog.
    - added new fog control panel to debug menu.

    FITNESS
     
    - Xp gain from exercises can now be different.
    - Regularity will not drop until 24h after doing an exercise.
    - Fixed some fitness animation weirdness.
    - Remove the fitness UI when entering a car.
    - Fixed NullPointerException in Fitness.decreaseRegularity().
    - Fixed exception in Fitness.load().
    - Moved fitness to health panel (new button) instead of right click menu.
     
    BALANCE
     
    - Allow washing dirty bandages from clean-water sources such as sinks.
    - Dismantle Flashlight recipe is allowed if there is a battery in the flashlight.
    - Renamed two Jackets to Leather Jacket. They were already leather.
    - Increased antique stove weight from 20.0 to 40.0.
    - Decreased gardening spray capacity
    - Reduced size of zombies target outline by 20%.
    - Reloading a gun will look for magazine in bags and not just main inventory.
    - Toilet paper can now be used the same way as tissue (equip in main or secondary hands to reduce cough noise).
    - Toilet paper can now be used to start and fuel a fire/BBQ.
    - Slight bump in sneak skill (when in plain sight, will reduce the zed vision/footstep volume)
    - MSR700/MSR788 now doesn't require magazines.
     
    OPTIMIZATION

    - Optimized ScriptModule.getRecipe().
    - Declared SpriteRenderer.instance and SpriteRenderer.ringBuffer 'final'.
    - Avoid some string-related gc with cutaways (parsing sprite names).
    - Big optimization to cutaway rendering - moved testing of TallHoppableW, WallWTrans, TallHoppableN and WallNTrans to IsoFlagTypes since they were doing lots of string comparisons and slowing rendering down

    MODEL AND ANIM CHANGES
     
    -adjusted geometry so the gas mask works better with hats.
    -added another body location to BodyLocations.lua (MaskFull)
    -made welding mask part of the MaskFull body location
    - Changed the cough/sneeze/fidget animations (the 'ext' state) to play as a sub-state of the 'idle' state.
    -re-exported TShirt_white to not have buttoned front
     
    FIXES
     
    - Fixed the wrong animation playing when putting on baseball caps.
    - Fixed NullPointerException in IsoGridSquare.getPuddlesDir(). This happened with a fireplace.
    - Fixed some missing translation files
    - Fixed not being able to equip and unequip items while aiming.
    - Fixed zombie fence-flop crawling attacks hitting the player through closed doors.
    - Fixed recipes without required skills not working.
    - Fixed items not being taken from bags when equipping a light source.
    - Fixed equipping an item in one hand when it looked like it should be equipped two-handed when dragging an item onto the primary/secondary icons.
    - Fixed being able to climb through closed windows sometimes.
    - Fixed not being able to reload an empty magazine while aiming.
    - Fixed gunshot sounds and muzzleflash effects while sitting on the ground.
    - Fixed exception when lighting a barbecue or fireplace with gas.
    - Fixed timed actions not working while the warm-hands-by-a-fire animation is playing.
    - Fixed warm-hands-by-a-fire animation possibly continuing long after the fire goes out.
    - Fixed being able to fish at long distance with spears. (also one of the problem was if you only had a spear and open the UI, it was considered as a fishing rod!)
    - Fixed transition animation from standing to sitting on ground not playing.
    - Fixed available hotbar slots not updating when using a controller.
    - Fixed timed actions not starting while aiming in a vehicle.
    - Fixed the player getting stuck exiting a vehicle if it was done while aiming.
    - Fixed toggle aim on/off not working in vehicles.
    - Fixed the aim-assist cursor not disappearig after the player dies.
    - Fixed long lines of text extending outside the crafting and switch-vehicle-seat windows.
    - Fixed the automatic moving of items on vehicle seats not moving an item if it used all the remaining space on a seat.
    - Fixed regularity map being re-initlized if fitness instructor/fireman.
    - Fixed regularity progress bar showing incorrect values (it could never be at 100%!)
    - Fixed the info popup in the profession/traits ui not being hidden when going to the previous or next screen.
    - Fixed containers with capacity 3 or less not getting extra capacity from the Organized trait. This affected Fanny Packs.
    - Fixed corpse inventory capacity being affected by the Organized and Disorganized traits. Player inventory capacity has never been affected by these traits (only bags).
    - Fixed issues with the "Campfire Info" command after right-clicking on a campfire that is behind a wall.
    - Fixed being able to drive a vehicle forward in reverse gear.
    - Fixed being unable to look around by holding the right mouse button while in a vehicle with the window closed. This worked when holding the Aim key, but not when holding the right mouse button. 
    - Fixed "All All" not adding all charcoal to barbecues, campfires and fireplaces. It will add one unit of charcoal (30 minutes) at a time until all is used.
    - Fixed zombies moving through walls after climbing over a fence sometimes. This was easy to reproduce north of the West Point police station when fast-forwarding.
    - Fixed cough/sneeze/fidget animations playing more frequently at higher framerates.
    - Fixed context-menu cooking translations for latest version of Translatoid
    - Fixed clothing mod data being lost when reversing caps, putting hoods up/down, etc.
    - Fixed not facing doors when locking and unlocking them via the context menu.
    - Fixed not gaining only strength and not fitness exp when doing some fitness exercices.
    - Fixed being able to open multiple fitness UI.
    - Fixed double door and stick traps returning more than they took to craft.
    - Fixed sleep traits not affecting how much a char sleeps
    - Fixed not being able to disassemble large metal shelves
    - Fixed not being able to remove tiredness with restless sleeper
    - Fixed front strength not showing properly in debug climate plotter
  25. Like
    Batsphinx got a reaction from Zaidah in IWBUMS 41.45 released   
    NEW
     
    - Allow crowbars to be used to remove wood barricades, and use animations for it
    - Added context-menu commands for adding all fuel items, and all fuel items of a certain type, to barbecues, campfires and fireplaces.
    - The warm-hands-by-a-fire now works with fireplaces.
    - Added 'world' attachments to shotgun models.
    - Added a shit ton of new male names, female names and surnames taken from 1994 US census so every other character isn't called Marina Hodgetts. (Thanks to Jam for putting these together.)
    - The inspect-clothing command will transfer items to the player's inventory if needed.
    - Inflating vehicle tires will stop at the maximum pressure instead of always adding 5. It was annoying having to cancel the action at the right time.
    - Play the "craft" animation when adding patches to and removing patches from clothing.
    - Updated translations.
    - Display "Sleep on Ground" instead of "Sleep" in the context menu when no bed is selected.
    - The "Sleep" tooltip displays the quality of the bed which can be Bad, Average or Good.
    - Added cooler (can be worn in hands).
    - Added satchel (3 variations, can be worn on back or in hands).
    - Added briefcase spawns
    - Added pistol case.
    - Updated some textures for bags.
    - Allow the player to shove (and stomp) sooner after attacking with a weapon.
    - The crafting ui displays the the player's skill level for recipes with required skills (such as Make Trap Box).
     Required skills are displayed in red text if the player's level is below the required level.
    - Added methods Recipe.getRequiredSkillCount() and Recipe.getRequiredSkill().
     Recipe.getRequiredSkill(int index) returns a RequiredSkill object with methods getPerk() and getLevel().
     
    IMPROVED FOG SYSTEM
     
    - brand new awesome fog now added
    - added display option for new fog, can toggle between high quality, medium quality and legacy (build 40)
    - changed fog generation, now variable duration based on day mean temperature.
    - added chance of grey tinted fog effect to storms.
    - added guaranteed strong tinted fog effect to tropical storm, now very distinctive.
    - modified blizzard effects to work well with new fog.
    - added new fog control panel to debug menu.

    FITNESS
     
    - Xp gain from exercises can now be different.
    - Regularity will not drop until 24h after doing an exercise.
    - Fixed some fitness animation weirdness.
    - Remove the fitness UI when entering a car.
    - Fixed NullPointerException in Fitness.decreaseRegularity().
    - Fixed exception in Fitness.load().
    - Moved fitness to health panel (new button) instead of right click menu.
     
    BALANCE
     
    - Allow washing dirty bandages from clean-water sources such as sinks.
    - Dismantle Flashlight recipe is allowed if there is a battery in the flashlight.
    - Renamed two Jackets to Leather Jacket. They were already leather.
    - Increased antique stove weight from 20.0 to 40.0.
    - Decreased gardening spray capacity
    - Reduced size of zombies target outline by 20%.
    - Reloading a gun will look for magazine in bags and not just main inventory.
    - Toilet paper can now be used the same way as tissue (equip in main or secondary hands to reduce cough noise).
    - Toilet paper can now be used to start and fuel a fire/BBQ.
    - Slight bump in sneak skill (when in plain sight, will reduce the zed vision/footstep volume)
    - MSR700/MSR788 now doesn't require magazines.
     
    OPTIMIZATION

    - Optimized ScriptModule.getRecipe().
    - Declared SpriteRenderer.instance and SpriteRenderer.ringBuffer 'final'.
    - Avoid some string-related gc with cutaways (parsing sprite names).
    - Big optimization to cutaway rendering - moved testing of TallHoppableW, WallWTrans, TallHoppableN and WallNTrans to IsoFlagTypes since they were doing lots of string comparisons and slowing rendering down

    MODEL AND ANIM CHANGES
     
    -adjusted geometry so the gas mask works better with hats.
    -added another body location to BodyLocations.lua (MaskFull)
    -made welding mask part of the MaskFull body location
    - Changed the cough/sneeze/fidget animations (the 'ext' state) to play as a sub-state of the 'idle' state.
    -re-exported TShirt_white to not have buttoned front
     
    FIXES
     
    - Fixed the wrong animation playing when putting on baseball caps.
    - Fixed NullPointerException in IsoGridSquare.getPuddlesDir(). This happened with a fireplace.
    - Fixed some missing translation files
    - Fixed not being able to equip and unequip items while aiming.
    - Fixed zombie fence-flop crawling attacks hitting the player through closed doors.
    - Fixed recipes without required skills not working.
    - Fixed items not being taken from bags when equipping a light source.
    - Fixed equipping an item in one hand when it looked like it should be equipped two-handed when dragging an item onto the primary/secondary icons.
    - Fixed being able to climb through closed windows sometimes.
    - Fixed not being able to reload an empty magazine while aiming.
    - Fixed gunshot sounds and muzzleflash effects while sitting on the ground.
    - Fixed exception when lighting a barbecue or fireplace with gas.
    - Fixed timed actions not working while the warm-hands-by-a-fire animation is playing.
    - Fixed warm-hands-by-a-fire animation possibly continuing long after the fire goes out.
    - Fixed being able to fish at long distance with spears. (also one of the problem was if you only had a spear and open the UI, it was considered as a fishing rod!)
    - Fixed transition animation from standing to sitting on ground not playing.
    - Fixed available hotbar slots not updating when using a controller.
    - Fixed timed actions not starting while aiming in a vehicle.
    - Fixed the player getting stuck exiting a vehicle if it was done while aiming.
    - Fixed toggle aim on/off not working in vehicles.
    - Fixed the aim-assist cursor not disappearig after the player dies.
    - Fixed long lines of text extending outside the crafting and switch-vehicle-seat windows.
    - Fixed the automatic moving of items on vehicle seats not moving an item if it used all the remaining space on a seat.
    - Fixed regularity map being re-initlized if fitness instructor/fireman.
    - Fixed regularity progress bar showing incorrect values (it could never be at 100%!)
    - Fixed the info popup in the profession/traits ui not being hidden when going to the previous or next screen.
    - Fixed containers with capacity 3 or less not getting extra capacity from the Organized trait. This affected Fanny Packs.
    - Fixed corpse inventory capacity being affected by the Organized and Disorganized traits. Player inventory capacity has never been affected by these traits (only bags).
    - Fixed issues with the "Campfire Info" command after right-clicking on a campfire that is behind a wall.
    - Fixed being able to drive a vehicle forward in reverse gear.
    - Fixed being unable to look around by holding the right mouse button while in a vehicle with the window closed. This worked when holding the Aim key, but not when holding the right mouse button. 
    - Fixed "All All" not adding all charcoal to barbecues, campfires and fireplaces. It will add one unit of charcoal (30 minutes) at a time until all is used.
    - Fixed zombies moving through walls after climbing over a fence sometimes. This was easy to reproduce north of the West Point police station when fast-forwarding.
    - Fixed cough/sneeze/fidget animations playing more frequently at higher framerates.
    - Fixed context-menu cooking translations for latest version of Translatoid
    - Fixed clothing mod data being lost when reversing caps, putting hoods up/down, etc.
    - Fixed not facing doors when locking and unlocking them via the context menu.
    - Fixed not gaining only strength and not fitness exp when doing some fitness exercices.
    - Fixed being able to open multiple fitness UI.
    - Fixed double door and stick traps returning more than they took to craft.
    - Fixed sleep traits not affecting how much a char sleeps
    - Fixed not being able to disassemble large metal shelves
    - Fixed not being able to remove tiredness with restless sleeper
    - Fixed front strength not showing properly in debug climate plotter
×
×
  • Create New...