Changed In and Out Role to Recruit and Initial Role for better understanding
This commit is contained in:
@@ -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 'In Role' is obtained, it is removed and the 'Out Role' is assigned. You cannot obtain another 'Out Role' 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 'Recruit Role' is obtained, it is removed and the 'Initial Role' (It should match the Initial Role in the Level Tracks) is assigned. You cannot obtain another 'Initial Role' 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 }]);
|
||||||
|
|||||||
Reference in New Issue
Block a user