File tree 2 files changed +3
-2
lines changed
metadoom-dev/zscript/codex
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 4
4
* .bak
5
5
* .pk7
6
6
* .7z
7
+ * .bat
7
8
8
9
# folders with big bulky things that shouldn't go on git like psd files
9
10
/artsrc /*
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ Class MetaCodex_Event : EventHandler
13
13
}
14
14
override void WorldThingDied(WorldEvent e)
15
15
{
16
- if( e.Thing.target==null|| !(e.Thing.target is "PlayerPawn"))
16
+ if ( e.Thing.target==null || !(e.Thing.target is "PlayerPawn") )
17
17
{
18
18
return;
19
19
}
20
- if(!multiplayer && Meta_ThingExists(e.Thing.GetClassName())&& Meta_ThingExists("MetaCodex_"..e.Thing.GetClassName()))
20
+ if ( Meta_ThingExists(e.Thing.GetClassName()) && Meta_ThingExists("MetaCodex_"..e.Thing.GetClassName()) )
21
21
{
22
22
if(e.Thing.target.player!=null&&e.Thing.target.player==players[consoleplayer]&&!e.Thing.target.FindInventory("MetaCodex_"..e.Thing.GetClassName()))
23
23
{
You can’t perform that action at this time.
0 commit comments