-
Notifications
You must be signed in to change notification settings - Fork 190
Engine update v283.1 #1488
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Engine update v283.1 #1488
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
4562f23
Bump RobustToolbox to v283.1.0.
Rxup 58dc5cc
Fixing a Permissions vulnerability (#44071)
MetalSage 59e925a
Fix Antag Selection System Exception (#44115)
Princess-Cheeseballs fdd2d96
Fix shooting from inside a morgue exploit (#44188)
B-Kirill 2c70c7a
Fix admin logs being silently dropped in case of failure (#33278)
MendaxxDev a45afde
Fix slipping canceling held movement inputs (#44478)
Samuka-C b5d0834
Fix items deletion on recycling for entities with `ItemSlotsComponent…
MilenVolf ca2e484
Fix GetInStation filter (#44686)
psykana fda04c7
Fix parcel wrap transform parenting via SpawnAtPosition (#44679)
whatston3 cb1cfc6
Fix `shuttle.mass_limit` (#44560)
kontakt 11d0a38
Fix holopad and consoles wire visuals during reconnect (#44708)
peaceful-joules 7f41d82
Fix inhand visuals getting stuck (#44405)
jessicamaybe 7859b5e
Taking over an entity whose mind is visiting fix (#44610)
riccardi48 71c0597
Fix cloningsystem proxy call (#44739)
metalgearsloth 2a8128d
Zombie Ghost Role Fix (#44691)
ketufaispikinut 38b5528
Fix for things shocking you if you click them (#44479)
jessicamaybe 33fda0f
Fix electrified objects not shocking on world activation (#42657)
B-Kirill cefa537
Fix client mispredict on some storage operations (#44612)
B-Kirill bb8d0bc
Fix puddles not being removed when tile changes to lattice (#44715)
B-Kirill e98e8cf
Fix speedloader reload (#43259)
psykana e0c9b14
Adapt storage dump prediction to System.Random PredictedRandom.
Rxup f4dad30
Changelog: RobustToolbox 283.1.0 and upstream cherry-pick fixes.
Rxup File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
Перенесите инкремент метрики после успешного выполнения задачи.
Сейчас метрика
LogsSentувеличивается доawait task. Если задача_db.AddAdminLogs(copy)завершится с ошибкой и логи будут возвращены в очередь (блокcatch), при их успешном сохранении в будущем метрика увеличится повторно (double-count).Следует инкрементировать метрику только после успешного завершения задачи.
💡 Предлагаемое исправление
try { if (_metricsEnabled) { - LogsSent.Inc(copy.Count); - using (DatabaseUpdateTime.NewTimer()) { await task; } + + LogsSent.Inc(copy.Count); } else {📝 Committable suggestion
🤖 Prompt for AI Agents