-
-
Notifications
You must be signed in to change notification settings - Fork 225
feat: Ношение страпона на поясе теперь открывает доступ к взаимодействиям #499
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,6 +9,9 @@ | |
| - !type:ItemCondition | ||
| checkInitiator: true | ||
| checkTarget: false | ||
| checkEquipped: true | ||
| equipmentSlots: | ||
| - belt | ||
| itemWhiteList: | ||
| - ERPNormalDildo | ||
| - ERPDildoAvian | ||
|
|
@@ -18,6 +21,7 @@ | |
| - ERPDildoKnot | ||
| - ERPDildoTentacle | ||
| - PlushieAshito | ||
| - ERPStrapOn | ||
| - !type:BodyAreaTagCondition | ||
| checkInitiator: false | ||
| checkTarget: true | ||
|
|
@@ -58,6 +62,9 @@ | |
| - !type:ItemCondition | ||
| checkInitiator: true | ||
| checkTarget: false | ||
| checkEquipped: true | ||
| equipmentSlots: | ||
| - belt | ||
| itemWhiteList: | ||
| - ERPNormalDildo | ||
| - ERPDildoAvian | ||
|
|
@@ -67,6 +74,7 @@ | |
| - ERPDildoKnot | ||
| - ERPDildoTentacle | ||
| - PlushieAshito | ||
| - ERPStrapOn | ||
| - !type:BodyAreaTagCondition | ||
| checkInitiator: false | ||
| checkTarget: true | ||
|
|
@@ -208,6 +216,7 @@ | |
| - ERPDildoKnot | ||
| - ERPDildoTentacle | ||
| - PlushieAshito | ||
| - ERPStrapOn | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Для self-dildo взаимодействий belt-гейт не добавлен. На Line 219 и Line 268 Предложение для обоих self-блоков (`ERPSelftoyPlaceholderDildo*`) - !type:ItemCondition
checkInitiator: true
checkTarget: false
+ checkEquipped: true
+ equipmentSlots:
+ - belt
itemWhiteList:
- ERPNormalDildo
- ERPDildoAvian
- ERPDildoDragon
- ERPDildoDouble
- ERPDildoEquine
- ERPDildoKnot
- ERPDildoTentacle
- PlushieAshito
- ERPStrapOnAlso applies to: 268-268 🤖 Prompt for AI Agents |
||
| interactionMessages: | ||
| - "%user вставляет дилдо себе в анал" | ||
| - "%user вводит дилдо в свой анал" | ||
|
|
@@ -256,6 +265,7 @@ | |
| - ERPDildoKnot | ||
| - ERPDildoTentacle | ||
| - PlushieAshito | ||
| - ERPStrapOn | ||
| interactionMessages: | ||
| - "%user вставляет дилдо в вагину" | ||
| - "%user вводит дилдо в вагину" | ||
|
|
||
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.
checkEquipped/equipmentSlotsне сработают с текущимItemCondition.На Line 12-14 и Line 65-67 добавлены поля, которых сейчас нет в
ItemCondition(Content.Shared/_Sunrise/InteractionsPanel/Data/Conditions/ItemCondition.cs). Из-за этого belt-проверка не будет применена (или сломает чтение прототипа), и логика останется проверкой предмета только в руках.Also applies to: 65-67
🤖 Prompt for AI Agents