My program doesn't have bugs. It just develops random features.

Legacy:RegularEngine/MapViewer

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search

MapViewer is just an extended version of MapTrader that won't allow votes.

class MapViewer extends MapTrader;
 
 
 
function InitComponent(GUIController MyController, GUIComponent MyOwner)
{
 Super.InitComponent(MyController, MyOwner);
 TeamAVote.bVisible = false;
 TeamBVote.bVisible = false;
 
}