Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 6, 2012, 4:40:00 PM (12 years ago)
Author:
jo
Message:

On the way to adjust multiplayermenue. Levels tagged with singleplayer should NOT be displayed in the multiplayermenue.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/release2012/data/gui/scripts/HostMenu.lua

    r8079 r9373  
    6363        level = orxonox.LevelManager:getInstance():getAvailableLevelListItem(index)
    6464        if level ~= nil then
    65             if P.showAll or not level:hasTag("test") then
     65            if P.showAll or not level:hasTag("test") or not level:hasTag("singleplayer") then
    6666                table.insert(P.levelList, level)
    6767            end
Note: See TracChangeset for help on using the changeset viewer.