			if false then
					local ps = {}
					WARE_ForEachPlayer(function(p)
						if WARE_PlayerInField(p) then
							ps[#ps+1] = {p, p.wareperm.score}
						end
					end)
					ps = {}
					for i = 1,11 do
						-- "123456789012345678901"
						--ps[i] = {{name=string.format("123456789012345678-%02d", i)}, i}
						ps[i] = {{name=string.format(("M"):rep(18).."-%02d", i)}, i}
					end
					if #ps > 1 then table.sort(ps, function(a,b) return a[2] > b[2] end) end
					
					local rankflags = V_SNAPTOTOP|V_SNAPTORIGHT
					local drawmore,drawn = #ps > 0,0
					--local xp,yp = (320-4*21)*FRACUNIT, 4*FRACUNIT
					local xp,yp = 320*FRACUNIT, 8*FRACUNIT
					local weedth = FRACUNIT*2*16 // DUDE WEED LMAO
					local barcol = v.getColormap(-1,SKINCOLOR_BLACK)
					while drawmore do
						local the = ps[drawn+1]
						
						if the ~= nil then
							v.drawStretched(xp,yp,weedth,FRACUNIT,v.cachePatch("RANKBAR"),rankflags,barcol)
							v.drawScaled(xp-weedth*2,yp,FRACUNIT,v.cachePatch("RANKCAP"),rankflags,barcol)
							--v.drawString(xp/FRACUNIT,yp/FRACUNIT, the[1].name:sub(1,21), rankflags|V_ALLOWLOWERCASE, "thin-small")
							local str = the[1].name:sub(1,21)
							drawStringMkII(v,xp-weedth*2,yp,
							str,FONT_TINY2,
							rankflags,{valign="center",align="left",color=SKINCOLOR_JET,style=FS_FIXED,scale=FRACUNIT/2})
						else break end
						
						xp = $
						yp = $+10*FRACUNIT
						drawn = $+1
						if drawn >= 5 then drawmore = false end
					end
			end
			
			
			
			
							if not WARE.deluxe then
					if WARE.round > 20 then return WS_END end // Finished all rounds, game over
					if WARE.round % 20 == 0 then WARE.boss = true else WARE.boss = false end
					if WARE.round > 0 and WARE.round % 5 == 0 then
						return WS_ROUNDSETUP
					else
						return WS_PREROUND
					end
				else // Deluxe Edition
					if WARE.round > 40 then return WS_END end // Finished all rounds in Deluxe Edition, game over
					if WARE.round == 40 then WARE.boss = true else WARE.boss = false end
					if WARE.round % 4 == 0 then WARE.speed = $+1 end
					return WS_PREROUND
				end