Changed In and Out Role to Recruit and Initial Role for better understanding

This commit is contained in:
2026-01-03 09:58:41 +05:30
parent 3fa5ba438b
commit 92ad60fd3c

View File

@@ -1012,7 +1012,7 @@ export default function LevelingEditor({ guildId }: LevelingEditorProps) {
Level Bridges Level Bridges
</h2> </h2>
<p className="text-gray-400 text-sm mt-1"> <p className="text-gray-400 text-sm mt-1">
When the &apos;In Role&apos; is obtained, it is removed and the &apos;Out Role&apos; is assigned. You cannot obtain another &apos;Out Role&apos; while holding one, so switching tracks requires resetting progress via <code className="bg-black/30 border border-white/10 px-1.5 py-0.5 rounded text-blue-300 font-mono text-xs">/level reset</code>. When the &apos;Recruit Role&apos; is obtained, it is removed and the &apos;Initial Role&apos; (It should match the Initial Role in the Level Tracks) is assigned. You cannot obtain another &apos;Initial Role&apos; while holding one, so switching tracks requires resetting progress via <code className="bg-black/30 border border-white/10 px-1.5 py-0.5 rounded text-blue-300 font-mono text-xs">/level reset</code>.
</p> </p>
</div> </div>
</div> </div>
@@ -1100,7 +1100,7 @@ export default function LevelingEditor({ guildId }: LevelingEditorProps) {
); );
})() })()
) : ( ) : (
<span className="text-gray-500">Select In Role...</span> <span className="text-gray-500">Select Recruit Role...</span>
)} )}
<ChevronDown className="w-4 h-4 text-gray-500" /> <ChevronDown className="w-4 h-4 text-gray-500" />
</button> </button>
@@ -1186,7 +1186,7 @@ export default function LevelingEditor({ guildId }: LevelingEditorProps) {
); );
})() })()
) : ( ) : (
<span className="text-gray-500">Select Out Role...</span> <span className="text-gray-500">Select Initial Role...</span>
)} )}
<ChevronDown className="w-4 h-4 text-gray-500" /> <ChevronDown className="w-4 h-4 text-gray-500" />
</button> </button>
@@ -1244,7 +1244,7 @@ export default function LevelingEditor({ guildId }: LevelingEditorProps) {
onClick={() => { onClick={() => {
if (newBridgeIn && newBridgeOut) { if (newBridgeIn && newBridgeOut) {
if (newBridgeIn === newBridgeOut) { if (newBridgeIn === newBridgeOut) {
setError("In Role and Out Role cannot be the same"); setError("Recruit Role and Initial Role cannot be the same");
return; return;
} }
setBridges([...bridges, { in_role_id: newBridgeIn, out_role_id: newBridgeOut }]); setBridges([...bridges, { in_role_id: newBridgeIn, out_role_id: newBridgeOut }]);