userJake_Richcancel
reporust_rebootcancel

5,490 Commits over 1,553 Days - 0.15cph!

3 Hours Ago
Fix compile errors
3 Hours Ago
Fix a 4 year old bug: being able to move items into the output of a furnace by splitting them into the output slots - the reason I avoided it was you have to modify all the ItemFilter methods in the project and add a BasePlayer parameter - this allows us to block the player moving items into the output of the furnace but keep the furnace able to move cooked items into it's output
4 Hours Ago
Fix items that are both cookable and compostable (meat) using the lesser of the two times for composting instead of the correct time for each
4 Hours Ago
Fix the composter showing "Furnace" in the loot panel title instead of "Composter"
4 Hours Ago
Don't show the icon as burning when it's inside the composter
4 Hours Ago
Fix item creation loop running for 0 amount (due to chance of creating fertilizer) so early exit if chance fails
4 Hours Ago
Increase the smelt speed of the composter so it behaves the same as before when you were splitting stacks (same as furnaces were back in the day)
5 Hours Ago
Fix composter set to only accept food from old prefab / item filter setup
5 Hours Ago
Fix items that are compostable but don't produce any compost being allowed in the compost (because ItemModCompostable is used for bait value)
5 Hours Ago
Fix the loot panel for the composter not working the editor - OnValidate() was overwriting the offset of the inventory panel
5 Hours Ago
Fix loot panel not predicting cook time for composting because it was only checking the ItemModCookable
5 Hours Ago
Add the "automatically start cooking" code from the apartment stove to the BaseOven and enable it for the composter (so the composter automatically "cooks" items added into it)
6 Hours Ago
Add prefab variant for composter loot panel (so we can remove / change the background icons for the composter inputs)
6 Hours Ago
Change the composter prefab
6 Hours Ago
Rewrite the hackweek composter UI to merge all of the composter code into normal cooking code - move ItemModCookable -> CookableItemInfo so we can create a "cooking compost" component at runtime - turn ItemModCompostable into an ItemMod - convert Composter class from StorageContainre -> BaseOven
Today
Make the code for "cooking items" in furnaces work on both compostable items and normal cookable items
Today
merge from main -> Hackweek_CompostUI
Today
merge from fix_hotbar_swap_overstack -> main
Yesterday
merge from main -> fix_hotbar_swap_overstack
2 Days Ago
merge from main -> Hackweek_CompostUI
3 Days Ago
merge from main -> fix_hotbar_swap_overstack
3 Days Ago
Fix hotbar swapping not working with overstacks - move the RPC completely serverside so it can swap overstacks (thinking was we didn't need a network++ originally if we kept it clientside but forgot swapping overstacks is awkward) - keep existing admin checks
3 Days Ago
merge from main -> base_occlusion
3 Days Ago
Refactor and cleanup of code
3 Days Ago
Make sure we only send entiites when a door opens immediately based on a convar, so we can do normal slower snapshot queue when doors are opened and we send entiites and let the "closer than 30m send everything" prevent pop-in
6 Days Ago
Fix deployables that are inside multiple rooms not working - assign them to their own network groups similar to walls that share multiple rooms and subscribe appropriately
6 Days Ago
Always show rooms that are within ~30m of the player - prevents us from having to blast the client with a ton of entities right when they open the door, allows us to stream them at a sane rate
7 Days Ago
Simple list of doors with transparency for testing
7 Days Ago
Add ddraw for network groups for rooms
7 Days Ago
Reduce amount of network groups for rooms
7 Days Ago
Send network updates of room behind the door before the door's network update is sent
7 Days Ago
Fix lingering occlusion (wait 5s before hiding on client) not always working
8 Days Ago
update base_occlusion/optimize_building_blocks
8 Days Ago
Update testlist
8 Days Ago
merge from main -> base_occlusion
9 Days Ago
merge from fix_threaded_logs -> main
9 Days Ago
Update test list
9 Days Ago
merge from main -> fix_threaded_logs
9 Days Ago
Tests to confirm it's fixed
9 Days Ago
Also capture exceptions thrown on worker threads inside tasks - been bitten by this before: not realizing exceptions are being thrown in async tasks
9 Days Ago
Fix log messages from other threads not showing up in the console / RCON due to not having a threaded log handler - buffer in queue, swallow on main thread and feed into normal logging callback
9 Days Ago
Update other conditional model code to take into account null slots in conditionals (since we cache the last state of each conditional instead of only storing the spawned conditionals)
9 Days Ago
Optimize conditional models to only refresh if they are changed - fixes condition models all being destroyed and recreated every single time the model state was changed instead of only creating and deleting the conditionals that needed to be
9 Days Ago
Don't hide rooms until they have been invisible for 5s+ (prevents room going invisible as the door is in it's closing animation + reduces churn from rooms being deleted and networked over and over
9 Days Ago
Move code around, don't unload filestorage since domain reload should handle it
10 Days Ago
merge from main -> base_occlusion
10 Days Ago
Codegen
10 Days Ago
Tests to confirm the interior walls are fixed
10 Days Ago
Fixes to make edge case of interior walls not be hidden
10 Days Ago
Add command to export a building into a format that tests can use (so we aren't spawning the giant base every single time)