Commit f416998b authored by Nemo Ma's avatar Nemo Ma

Update itemmain.func.php

Patch up an oversight where if a player enters itemmix interface before becoming club20 in another window, they can still mix items while in club20.
parent 8d0565f3
......@@ -809,7 +809,8 @@ function itemmix($mlist, $itemselect=-1) {
}
$itmstr = substr($itmstr,0,-1);
if(!$mixflag) {
if(!$mixflag || $club == 20) {
//Added an additional check here so even Club20 somehow entered itemmix, nothing can be made.
$log .= "<span class=\"yellow\">$itmstr</span>不能合成!<br>";
$mode = 'itemmix';
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment